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

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

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 | Annotate | Revision Log
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_linux.h" 5 #include "net/proxy/proxy_config_service_linux.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #if defined(USE_GCONF) 9 #if defined(USE_GCONF)
10 #include <gconf/gconf-client.h> 10 #include <gconf/gconf-client.h>
(...skipping 16 matching lines...) Expand all
27 #include "base/compiler_specific.h" 27 #include "base/compiler_specific.h"
28 #include "base/environment.h" 28 #include "base/environment.h"
29 #include "base/file_path.h" 29 #include "base/file_path.h"
30 #include "base/file_util.h" 30 #include "base/file_util.h"
31 #include "base/logging.h" 31 #include "base/logging.h"
32 #include "base/message_loop.h" 32 #include "base/message_loop.h"
33 #include "base/nix/xdg_util.h" 33 #include "base/nix/xdg_util.h"
34 #include "base/string_number_conversions.h" 34 #include "base/string_number_conversions.h"
35 #include "base/string_tokenizer.h" 35 #include "base/string_tokenizer.h"
36 #include "base/string_util.h" 36 #include "base/string_util.h"
37 #include "base/task.h"
38 #include "base/threading/thread_restrictions.h" 37 #include "base/threading/thread_restrictions.h"
39 #include "base/timer.h" 38 #include "base/timer.h"
40 #include "googleurl/src/url_canon.h" 39 #include "googleurl/src/url_canon.h"
41 #include "net/base/net_errors.h" 40 #include "net/base/net_errors.h"
42 #include "net/http/http_util.h" 41 #include "net/http/http_util.h"
43 #include "net/proxy/proxy_config.h" 42 #include "net/proxy/proxy_config.h"
44 #include "net/proxy/proxy_server.h" 43 #include "net/proxy/proxy_server.h"
45 44
46 namespace net { 45 namespace net {
47 46
(...skipping 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 void ProxyConfigServiceLinux::RemoveObserver(Observer* observer) { 1784 void ProxyConfigServiceLinux::RemoveObserver(Observer* observer) {
1786 delegate_->RemoveObserver(observer); 1785 delegate_->RemoveObserver(observer);
1787 } 1786 }
1788 1787
1789 ProxyConfigService::ConfigAvailability 1788 ProxyConfigService::ConfigAvailability
1790 ProxyConfigServiceLinux::GetLatestProxyConfig(ProxyConfig* config) { 1789 ProxyConfigServiceLinux::GetLatestProxyConfig(ProxyConfig* config) {
1791 return delegate_->GetLatestProxyConfig(config); 1790 return delegate_->GetLatestProxyConfig(config);
1792 } 1791 }
1793 1792
1794 } // namespace net 1793 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_pipelined_connection_impl.h ('k') | net/proxy/proxy_config_service_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698