| Index: chromecast/net/connectivity_checker.cc
|
| diff --git a/chromecast/net/connectivity_checker.cc b/chromecast/net/connectivity_checker.cc
|
| index 873ab1e1a5789bfbc45a0ebcfad72a899a7d0671..cf3eb827bed3f02aa58cb9f013fc2b5539408c67 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,
|
| + std::unique_ptr<net::ProxyConfigService> proxy_config_service) {
|
| + return make_scoped_refptr(new ConnectivityCheckerImpl(
|
| + task_runner, std::move(proxy_config_service)));
|
| }
|
|
|
| } // namespace chromecast
|
|
|