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 #include "chromeos/network/proxy/proxy_config_service_impl.h" | 5 #include "chromeos/network/proxy/proxy_config_service_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
13 #include "base/threading/worker_pool.h" | |
14 #include "base/values.h" | 13 #include "base/values.h" |
15 #include "chromeos/network/network_profile.h" | 14 #include "chromeos/network/network_profile.h" |
16 #include "chromeos/network/network_profile_handler.h" | 15 #include "chromeos/network/network_profile_handler.h" |
17 #include "chromeos/network/network_state.h" | 16 #include "chromeos/network/network_state.h" |
18 #include "chromeos/network/network_state_handler.h" | 17 #include "chromeos/network/network_state_handler.h" |
19 #include "chromeos/network/onc/onc_utils.h" | 18 #include "chromeos/network/onc/onc_utils.h" |
20 #include "chromeos/network/proxy/proxy_config_handler.h" | 19 #include "chromeos/network/proxy/proxy_config_handler.h" |
21 #include "components/onc/onc_pref_names.h" | 20 #include "components/onc/onc_pref_names.h" |
22 #include "components/prefs/pref_service.h" | 21 #include "components/prefs/pref_service.h" |
23 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" | 22 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 std::unique_ptr<base::DictionaryValue> config_dict( | 285 std::unique_ptr<base::DictionaryValue> config_dict( |
287 effective_config.ToValue()); | 286 effective_config.ToValue()); |
288 VLOG(1) << this << ": Proxy changed: " | 287 VLOG(1) << this << ": Proxy changed: " |
289 << ProxyPrefs::ConfigStateToDebugString(active_config_state_) | 288 << ProxyPrefs::ConfigStateToDebugString(active_config_state_) |
290 << ", " << *config_dict; | 289 << ", " << *config_dict; |
291 } | 290 } |
292 } | 291 } |
293 } | 292 } |
294 | 293 |
295 } // namespace chromeos | 294 } // namespace chromeos |
OLD | NEW |