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

Unified Diff: chromecast/net/connectivity_checker.cc

Issue 2647323010: [Chromecast] Add proxy server support to chromecast (Closed)
Patch Set: Fixing test break. 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 | « chromecast/net/connectivity_checker.h ('k') | chromecast/net/connectivity_checker_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/net/connectivity_checker.cc
diff --git a/chromecast/net/connectivity_checker.cc b/chromecast/net/connectivity_checker.cc
index 873ab1e1a5789bfbc45a0ebcfad72a899a7d0671..9f0e7a132235ba2b70823bcb621de52bfbd8d0a7 100644
--- a/chromecast/net/connectivity_checker.cc
+++ b/chromecast/net/connectivity_checker.cc
@@ -34,8 +34,10 @@ void ConnectivityChecker::Notify(bool connected) {
// static
scoped_refptr<ConnectivityChecker> ConnectivityChecker::Create(
- const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) {
- return make_scoped_refptr(new ConnectivityCheckerImpl(task_runner));
+ const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
+ net::URLRequestContextGetter* url_request_context_getter) {
+ return make_scoped_refptr(
+ new ConnectivityCheckerImpl(task_runner, url_request_context_getter));
}
} // namespace chromecast
« no previous file with comments | « chromecast/net/connectivity_checker.h ('k') | chromecast/net/connectivity_checker_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698