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

Side by Side Diff: chrome/browser/io_thread.cc

Issue 16254003: WIP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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) 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 "chrome/browser/io_thread.h" 5 #include "chrome/browser/io_thread.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 18 matching lines...) Expand all
29 #include "chrome/browser/net/chrome_network_delegate.h" 29 #include "chrome/browser/net/chrome_network_delegate.h"
30 #include "chrome/browser/net/chrome_url_request_context.h" 30 #include "chrome/browser/net/chrome_url_request_context.h"
31 #include "chrome/browser/net/connect_interceptor.h" 31 #include "chrome/browser/net/connect_interceptor.h"
32 #include "chrome/browser/net/dns_probe_service.h" 32 #include "chrome/browser/net/dns_probe_service.h"
33 #include "chrome/browser/net/http_pipelining_compatibility_client.h" 33 #include "chrome/browser/net/http_pipelining_compatibility_client.h"
34 #include "chrome/browser/net/load_time_stats.h" 34 #include "chrome/browser/net/load_time_stats.h"
35 #include "chrome/browser/net/pref_proxy_config_tracker.h" 35 #include "chrome/browser/net/pref_proxy_config_tracker.h"
36 #include "chrome/browser/net/proxy_service_factory.h" 36 #include "chrome/browser/net/proxy_service_factory.h"
37 #include "chrome/browser/net/sdch_dictionary_fetcher.h" 37 #include "chrome/browser/net/sdch_dictionary_fetcher.h"
38 #include "chrome/browser/net/spdyproxy/http_auth_handler_spdyproxy.h" 38 #include "chrome/browser/net/spdyproxy/http_auth_handler_spdyproxy.h"
39 #include "chrome/browser/policy/policy_namespace.h"
39 #include "chrome/browser/policy/policy_service.h" 40 #include "chrome/browser/policy/policy_service.h"
40 #include "chrome/common/chrome_switches.h" 41 #include "chrome/common/chrome_switches.h"
41 #include "chrome/common/pref_names.h" 42 #include "chrome/common/pref_names.h"
42 #include "content/public/browser/browser_thread.h" 43 #include "content/public/browser/browser_thread.h"
43 #include "net/base/cert_verifier.h" 44 #include "net/base/cert_verifier.h"
44 #include "net/base/default_server_bound_cert_store.h" 45 #include "net/base/default_server_bound_cert_store.h"
45 #include "net/base/host_cache.h" 46 #include "net/base/host_cache.h"
46 #include "net/base/host_mapping_rules.h" 47 #include "net/base/host_mapping_rules.h"
47 #include "net/base/host_resolver.h" 48 #include "net/base/host_resolver.h"
48 #include "net/base/mapped_host_resolver.h" 49 #include "net/base/mapped_host_resolver.h"
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 globals_->system_request_context.reset( 903 globals_->system_request_context.reset(
903 ConstructSystemRequestContext(globals_, net_log_)); 904 ConstructSystemRequestContext(globals_, net_log_));
904 905
905 sdch_manager_->set_sdch_fetcher( 906 sdch_manager_->set_sdch_fetcher(
906 new SdchDictionaryFetcher(system_url_request_context_getter_.get())); 907 new SdchDictionaryFetcher(system_url_request_context_getter_.get()));
907 } 908 }
908 909
909 void IOThread::UpdateDnsClientEnabled() { 910 void IOThread::UpdateDnsClientEnabled() {
910 globals()->host_resolver->SetDnsClientEnabled(*dns_client_enabled_); 911 globals()->host_resolver->SetDnsClientEnabled(*dns_client_enabled_);
911 } 912 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/storage/settings_apitest.cc ('k') | chrome/browser/policy/async_policy_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698