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

Unified Diff: chromecast/net/connectivity_checker.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/net/connectivity_checker.h
diff --git a/chromecast/net/connectivity_checker.h b/chromecast/net/connectivity_checker.h
index a9711181132385ddb4dc292f0944d1db3484edff..9ad74acb45d3b0a8455e490893cd085ab7eed3a0 100644
--- a/chromecast/net/connectivity_checker.h
+++ b/chromecast/net/connectivity_checker.h
@@ -17,6 +17,10 @@ namespace base {
class SingleThreadTaskRunner;
}
+namespace net {
+class ProxyConfig;
+}
+
namespace chromecast {
// Checks if internet connectivity is available.
@@ -37,7 +41,8 @@ class ConnectivityChecker
};
static scoped_refptr<ConnectivityChecker> Create(
- const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
+ net::ProxyConfig& proxy_config);
ConnectivityChecker();

Powered by Google App Engine
This is Rietveld 408576698