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

Side by Side Diff: net/proxy/proxy_config_service_mac.cc

Issue 8523030: Remove mac_util header from proxy_config_service_mac.cc (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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) 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 #include "net/proxy/proxy_config_service_mac.h" 5 #include "net/proxy/proxy_config_service_mac.h"
6 6
7 #include <CoreFoundation/CoreFoundation.h> 7 #include <CoreFoundation/CoreFoundation.h>
8 #include <SystemConfiguration/SystemConfiguration.h> 8 #include <SystemConfiguration/SystemConfiguration.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/mac/foundation_util.h" 11 #include "base/mac/foundation_util.h"
12 #include "base/mac/mac_util.h"
13 #include "base/mac/scoped_cftyperef.h" 12 #include "base/mac/scoped_cftyperef.h"
14 #include "base/message_loop.h" 13 #include "base/message_loop.h"
15 #include "base/sys_string_conversions.h" 14 #include "base/sys_string_conversions.h"
16 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
17 #include "net/proxy/proxy_config.h" 16 #include "net/proxy/proxy_config.h"
18 #include "net/proxy/proxy_info.h" 17 #include "net/proxy/proxy_info.h"
19 #include "net/proxy/proxy_server.h" 18 #include "net/proxy/proxy_server.h"
20 19
21 namespace net { 20 namespace net {
22 21
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // Keep track of the last value we have seen. 259 // Keep track of the last value we have seen.
261 has_fetched_config_ = true; 260 has_fetched_config_ = true;
262 last_config_fetched_ = new_config; 261 last_config_fetched_ = new_config;
263 262
264 // Notify all the observers. 263 // Notify all the observers.
265 FOR_EACH_OBSERVER(Observer, observers_, 264 FOR_EACH_OBSERVER(Observer, observers_,
266 OnProxyConfigChanged(new_config, CONFIG_VALID)); 265 OnProxyConfigChanged(new_config, CONFIG_VALID));
267 } 266 }
268 267
269 } // namespace net 268 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698