Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1103)

Side by Side Diff: chromeos/network/proxy/proxy_config_service_impl.cc

Issue 2857613003: Remove unused base/threading/worker_pool.h includes. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/network/network_handler.cc ('k') | components/cronet/ios/cronet_environment.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/network/network_handler.cc ('k') | components/cronet/ios/cronet_environment.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698