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

Unified Diff: chromecast/net/connectivity_checker.h

Issue 2647323010: [Chromecast] Add proxy server support to chromecast (Closed)
Patch Set: Update connectivity checker to make it compile on desktop 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 dff6e530c6fd45b10084872b3034582dc61677de..1734bade1d651098e2a1acf5e1881a943e871274 100644
--- a/chromecast/net/connectivity_checker.h
+++ b/chromecast/net/connectivity_checker.h
@@ -15,6 +15,10 @@ namespace base {
class SingleThreadTaskRunner;
}
+namespace net {
+class ProxyConfigService;
+}
+
namespace chromecast {
// Checks if internet connectivity is available.
@@ -35,7 +39,8 @@ class ConnectivityChecker
};
static scoped_refptr<ConnectivityChecker> Create(
- const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
+ std::unique_ptr<net::ProxyConfigService> proxy_config_service);
ConnectivityChecker();

Powered by Google App Engine
This is Rietveld 408576698