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

Unified Diff: remoting/protocol/http_ice_config_request_unittest.cc

Issue 1976673002: Roll WebRTC 12681:12729, Libjingle 12581:12686 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update WebRTC to 12729 (the dependent WebRTC CL was reverted and relanded) Created 4 years, 7 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 | « DEPS ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/http_ice_config_request_unittest.cc
diff --git a/remoting/protocol/http_ice_config_request_unittest.cc b/remoting/protocol/http_ice_config_request_unittest.cc
index fc105a5c58d6a28bbdc75119e1fa0a9b75086436..866764165a35284ac77a333128c7a5c47604e448 100644
--- a/remoting/protocol/http_ice_config_request_unittest.cc
+++ b/remoting/protocol/http_ice_config_request_unittest.cc
@@ -59,23 +59,6 @@ class FakeUrlRequestFactory : public UrlRequestFactory {
std::map<std::string, UrlRequest::Result> results_;
};
-bool operator==(const cricket::ProtocolAddress& a,
- const cricket::ProtocolAddress& b) {
- return a.address == b.address && a.proto == b.proto && a.secure == b.secure;
-}
-bool operator==(const cricket::RelayServerConfig& a,
- const cricket::RelayServerConfig& b) {
- if (a.ports.size() != b.ports.size())
- return false;
- for (size_t i = 0; i < a.ports.size(); ++i) {
- if (!(a.ports[i] == b.ports[i]))
- return false;
- }
- return a.type == b.type &&
- a.credentials.username == b.credentials.username &&
- a.credentials.password == b.credentials.password;
-}
-
} // namespace
static const char kTestUrl[] = "http://host/ice_config";
« no previous file with comments | « DEPS ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698