| 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 CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ | 5 #ifndef CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ |
| 6 #define CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ | 6 #define CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/single_thread_task_runner.h" |
| 12 #include "chromeos/chromeos_export.h" | 13 #include "chromeos/chromeos_export.h" |
| 13 #include "chromeos/network/network_state_handler_observer.h" | 14 #include "chromeos/network/network_state_handler_observer.h" |
| 14 #include "components/onc/onc_constants.h" | 15 #include "components/onc/onc_constants.h" |
| 15 #include "components/prefs/pref_change_registrar.h" | 16 #include "components/prefs/pref_change_registrar.h" |
| 16 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" | 17 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" |
| 17 | 18 |
| 18 namespace chromeos { | 19 namespace chromeos { |
| 19 | 20 |
| 20 class NetworkState; | 21 class NetworkState; |
| 21 | 22 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 PrefService* local_state_prefs_; | 106 PrefService* local_state_prefs_; |
| 106 | 107 |
| 107 base::WeakPtrFactory<ProxyConfigServiceImpl> pointer_factory_; | 108 base::WeakPtrFactory<ProxyConfigServiceImpl> pointer_factory_; |
| 108 | 109 |
| 109 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceImpl); | 110 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceImpl); |
| 110 }; | 111 }; |
| 111 | 112 |
| 112 } // namespace chromeos | 113 } // namespace chromeos |
| 113 | 114 |
| 114 #endif // CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ | 115 #endif // CHROMEOS_NETWORK_PROXY_PROXY_CONFIG_SERVICE_IMPL_H_ |
| OLD | NEW |