OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ | 5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ |
6 #define NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ | 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 delegate_->SetUpAndFetchInitialConfig(glib_task_runner, | 289 delegate_->SetUpAndFetchInitialConfig(glib_task_runner, |
290 io_task_runner, | 290 io_task_runner, |
291 file_task_runner); | 291 file_task_runner); |
292 } | 292 } |
293 void OnCheckProxyConfigSettings() { | 293 void OnCheckProxyConfigSettings() { |
294 delegate_->OnCheckProxyConfigSettings(); | 294 delegate_->OnCheckProxyConfigSettings(); |
295 } | 295 } |
296 | 296 |
297 // ProxyConfigService methods: | 297 // ProxyConfigService methods: |
298 // Called from IO thread. | 298 // Called from IO thread. |
299 virtual void AddObserver(Observer* observer) OVERRIDE; | 299 virtual void AddObserver(Observer* observer) override; |
300 virtual void RemoveObserver(Observer* observer) OVERRIDE; | 300 virtual void RemoveObserver(Observer* observer) override; |
301 virtual ProxyConfigService::ConfigAvailability GetLatestProxyConfig( | 301 virtual ProxyConfigService::ConfigAvailability GetLatestProxyConfig( |
302 ProxyConfig* config) OVERRIDE; | 302 ProxyConfig* config) override; |
303 | 303 |
304 private: | 304 private: |
305 scoped_refptr<Delegate> delegate_; | 305 scoped_refptr<Delegate> delegate_; |
306 | 306 |
307 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceLinux); | 307 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceLinux); |
308 }; | 308 }; |
309 | 309 |
310 } // namespace net | 310 } // namespace net |
311 | 311 |
312 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ | 312 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ |
OLD | NEW |