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

Unified Diff: chromecast/browser/cast_browser_process.h

Issue 2647323010: [Chromecast] Add proxy server support to chromecast (Closed)
Patch Set: Cleanup Created 3 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
Index: chromecast/browser/cast_browser_process.h
diff --git a/chromecast/browser/cast_browser_process.h b/chromecast/browser/cast_browser_process.h
index af5ab10870a8d4d95aba4dad68150311cebc9839..693d2ed708e3e928601ec772f1f376826a07bb28 100644
--- a/chromecast/browser/cast_browser_process.h
+++ b/chromecast/browser/cast_browser_process.h
@@ -19,6 +19,7 @@ class CrashDumpManager;
namespace net {
class NetLog;
+class ProxyConfig;
} // namespace net
namespace chromecast {
@@ -90,8 +91,10 @@ class CastBrowserProcess {
return connectivity_checker_.get();
}
net::NetLog* net_log() const { return net_log_; }
+ net::ProxyConfig* proxy_config();
private:
+ std::unique_ptr<net::ProxyConfig> proxy_config_;
// Note: The following order should match the order they are set in
// CastBrowserMainParts.
std::unique_ptr<metrics::CastMetricsHelper> metrics_helper_;

Powered by Google App Engine
This is Rietveld 408576698