| 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 COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ | 5 #ifndef COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ |
| 6 #define COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ | 6 #define COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "base/prefs/pref_change_registrar.h" | 12 #include "base/prefs/pref_change_registrar.h" |
| 13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
| 14 #include "components/proxy_config/pref_proxy_config_tracker.h" | 14 #include "components/proxy_config/pref_proxy_config_tracker.h" |
| 15 #include "components/proxy_config/proxy_config_dictionary.h" | 15 #include "components/proxy_config/proxy_config_dictionary.h" |
| 16 #include "net/proxy/proxy_config.h" | 16 #include "net/proxy/proxy_config.h" |
| 17 #include "net/proxy/proxy_config_service.h" | 17 #include "net/proxy/proxy_config_service.h" |
| 18 | 18 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 PrefChangeRegistrar proxy_prefs_; | 169 PrefChangeRegistrar proxy_prefs_; |
| 170 | 170 |
| 171 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | 171 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
| 172 | 172 |
| 173 base::ThreadChecker thread_checker_; | 173 base::ThreadChecker thread_checker_; |
| 174 | 174 |
| 175 DISALLOW_COPY_AND_ASSIGN(PrefProxyConfigTrackerImpl); | 175 DISALLOW_COPY_AND_ASSIGN(PrefProxyConfigTrackerImpl); |
| 176 }; | 176 }; |
| 177 | 177 |
| 178 #endif // COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ | 178 #endif // COMPONENTS_PROXY_CONFIG_PREF_PROXY_CONFIG_TRACKER_IMPL_H_ |
| OLD | NEW |