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

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

Issue 2731673002: Removing HTTPS and SOCKS proxy server code. (Closed)
Patch Set: Adding back something still referenced by chromium. Created 3 years, 10 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/packetsocketfactory.h ('k') | webrtc/p2p/base/relayport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/portallocator.h
diff --git a/webrtc/p2p/base/portallocator.h b/webrtc/p2p/base/portallocator.h
index 51474297f77d1726cb1333dbceca8f3c361377d1..016a7dc996b41acca85987323274637b1951a730 100644
--- a/webrtc/p2p/base/portallocator.h
+++ b/webrtc/p2p/base/portallocator.h
@@ -19,7 +19,6 @@
#include "webrtc/p2p/base/port.h"
#include "webrtc/p2p/base/portinterface.h"
#include "webrtc/base/helpers.h"
-#include "webrtc/base/proxyinfo.h"
#include "webrtc/base/sigslot.h"
#include "webrtc/base/thread.h"
@@ -366,13 +365,6 @@ class PortAllocator : public sigslot::has_slots<> {
uint32_t flags() const { return flags_; }
void set_flags(uint32_t flags) { flags_ = flags; }
- const std::string& user_agent() const { return agent_; }
- const rtc::ProxyInfo& proxy() const { return proxy_; }
- void set_proxy(const std::string& agent, const rtc::ProxyInfo& proxy) {
- agent_ = agent;
- proxy_ = proxy;
- }
-
// Gets/Sets the port range to use when choosing client ports.
int min_port() const { return min_port_; }
int max_port() const { return max_port_; }
@@ -425,8 +417,6 @@ class PortAllocator : public sigslot::has_slots<> {
}
uint32_t flags_;
- std::string agent_;
- rtc::ProxyInfo proxy_;
int min_port_;
int max_port_;
uint32_t step_delay_;
« no previous file with comments | « webrtc/p2p/base/packetsocketfactory.h ('k') | webrtc/p2p/base/relayport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698