Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3178)

Unified Diff: webrtc/p2p/base/transportdescription.h

Issue 1642733002: Removing "candidates" attribute from TransportDescription. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/p2p/base/transportcontroller_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/transportdescription.h
diff --git a/webrtc/p2p/base/transportdescription.h b/webrtc/p2p/base/transportdescription.h
index 8ea1f4bc2e95e1dac4149119e20108becd409251..79fecc79709a52d3db313cbdb0976693c33d3377 100644
--- a/webrtc/p2p/base/transportdescription.h
+++ b/webrtc/p2p/base/transportdescription.h
@@ -15,7 +15,6 @@
#include <string>
#include <vector>
-#include "webrtc/p2p/base/candidate.h"
#include "webrtc/p2p/base/constants.h"
#include "webrtc/base/scoped_ptr.h"
#include "webrtc/base/sslfingerprint.h"
@@ -69,8 +68,6 @@ extern const char CONNECTIONROLE_HOLDCONN_STR[];
bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role);
bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str);
-typedef std::vector<Candidate> Candidates;
-
struct TransportDescription {
TransportDescription()
: ice_mode(ICEMODE_FULL),
@@ -81,15 +78,13 @@ struct TransportDescription {
const std::string& ice_pwd,
IceMode ice_mode,
ConnectionRole role,
- const rtc::SSLFingerprint* identity_fingerprint,
- const Candidates& candidates)
+ const rtc::SSLFingerprint* identity_fingerprint)
: transport_options(transport_options),
ice_ufrag(ice_ufrag),
ice_pwd(ice_pwd),
ice_mode(ice_mode),
connection_role(role),
- identity_fingerprint(CopyFingerprint(identity_fingerprint)),
- candidates(candidates) {}
+ identity_fingerprint(CopyFingerprint(identity_fingerprint)) {}
TransportDescription(const std::string& ice_ufrag,
const std::string& ice_pwd)
: ice_ufrag(ice_ufrag),
@@ -102,8 +97,8 @@ struct TransportDescription {
ice_pwd(from.ice_pwd),
ice_mode(from.ice_mode),
connection_role(from.connection_role),
- identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())),
- candidates(from.candidates) {}
+ identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())) {
+ }
TransportDescription& operator=(const TransportDescription& from) {
// Self-assignment
@@ -118,7 +113,6 @@ struct TransportDescription {
identity_fingerprint.reset(CopyFingerprint(
from.identity_fingerprint.get()));
- candidates = from.candidates;
return *this;
}
@@ -146,7 +140,6 @@ struct TransportDescription {
ConnectionRole connection_role;
rtc::scoped_ptr<rtc::SSLFingerprint> identity_fingerprint;
- Candidates candidates;
};
} // namespace cricket
« no previous file with comments | « webrtc/p2p/base/transportcontroller_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698