| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FIXED_H_ | 5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_ |
| 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_ | 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "net/base/net_errors.h" | 9 #include "net/base/net_errors.h" |
| 10 #include "net/proxy/proxy_config.h" | 10 #include "net/proxy/proxy_config.h" |
| 11 #include "net/proxy/proxy_config_service.h" | 11 #include "net/proxy/proxy_config_service.h" |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 | 14 |
| 15 // Implementation of ProxyConfigService that returns a fixed result. | 15 // Implementation of ProxyConfigService that returns a fixed result. |
| 16 class NET_EXPORT ProxyConfigServiceFixed : public ProxyConfigService { | 16 class NET_EXPORT ProxyConfigServiceFixed : public ProxyConfigService { |
| 17 public: | 17 public: |
| 18 explicit ProxyConfigServiceFixed(const ProxyConfig& pc); | 18 explicit ProxyConfigServiceFixed(const ProxyConfig& pc); |
| 19 virtual ~ProxyConfigServiceFixed(); | 19 virtual ~ProxyConfigServiceFixed(); |
| 20 | 20 |
| 21 // ProxyConfigService methods: | 21 // ProxyConfigService methods: |
| 22 virtual void AddObserver(Observer* observer) OVERRIDE {} | 22 virtual void AddObserver(Observer* observer) override {} |
| 23 virtual void RemoveObserver(Observer* observer) OVERRIDE {} | 23 virtual void RemoveObserver(Observer* observer) override {} |
| 24 virtual ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) OVERRIDE; | 24 virtual ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) override; |
| 25 | 25 |
| 26 private: | 26 private: |
| 27 ProxyConfig pc_; | 27 ProxyConfig pc_; |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 } // namespace net | 30 } // namespace net |
| 31 | 31 |
| 32 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_ | 32 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_ |
| OLD | NEW |