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

Side by Side Diff: chrome/browser/profiles/profile_impl_io_data.cc

Issue 341553005: Move of SdchDictionaryFetcher to net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync'd to r278311. Created 6 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
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/chrome_browser.gypi » ('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 "chrome/browser/profiles/profile_impl_io_data.h" 5 #include "chrome/browser/profiles/profile_impl_io_data.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/metrics/field_trial.h" 10 #include "base/metrics/field_trial.h"
11 #include "base/prefs/pref_member.h" 11 #include "base/prefs/pref_member.h"
12 #include "base/prefs/pref_service.h" 12 #include "base/prefs/pref_service.h"
13 #include "base/sequenced_task_runner.h" 13 #include "base/sequenced_task_runner.h"
14 #include "base/stl_util.h" 14 #include "base/stl_util.h"
15 #include "base/strings/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/threading/sequenced_worker_pool.h" 16 #include "base/threading/sequenced_worker_pool.h"
17 #include "base/threading/worker_pool.h" 17 #include "base/threading/worker_pool.h"
18 #include "chrome/browser/chrome_notification_types.h" 18 #include "chrome/browser/chrome_notification_types.h"
19 #include "chrome/browser/chromeos/profiles/profile_helper.h" 19 #include "chrome/browser/chromeos/profiles/profile_helper.h"
20 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" 20 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
21 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 21 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
22 #include "chrome/browser/io_thread.h" 22 #include "chrome/browser/io_thread.h"
23 #include "chrome/browser/net/chrome_net_log.h" 23 #include "chrome/browser/net/chrome_net_log.h"
24 #include "chrome/browser/net/chrome_network_delegate.h" 24 #include "chrome/browser/net/chrome_network_delegate.h"
25 #include "chrome/browser/net/connect_interceptor.h" 25 #include "chrome/browser/net/connect_interceptor.h"
26 #include "chrome/browser/net/cookie_store_util.h" 26 #include "chrome/browser/net/cookie_store_util.h"
27 #include "chrome/browser/net/http_server_properties_manager.h" 27 #include "chrome/browser/net/http_server_properties_manager.h"
28 #include "chrome/browser/net/predictor.h" 28 #include "chrome/browser/net/predictor.h"
29 #include "chrome/browser/net/sdch_dictionary_fetcher.h"
30 #include "chrome/browser/net/sqlite_server_bound_cert_store.h" 29 #include "chrome/browser/net/sqlite_server_bound_cert_store.h"
31 #include "chrome/browser/profiles/profile.h" 30 #include "chrome/browser/profiles/profile.h"
32 #include "chrome/common/chrome_constants.h" 31 #include "chrome/common/chrome_constants.h"
33 #include "chrome/common/chrome_switches.h" 32 #include "chrome/common/chrome_switches.h"
34 #include "chrome/common/pref_names.h" 33 #include "chrome/common/pref_names.h"
35 #include "chrome/common/url_constants.h" 34 #include "chrome/common/url_constants.h"
36 #include "components/data_reduction_proxy/common/data_reduction_proxy_pref_names .h" 35 #include "components/data_reduction_proxy/common/data_reduction_proxy_pref_names .h"
37 #include "components/domain_reliability/monitor.h" 36 #include "components/domain_reliability/monitor.h"
38 #include "content/public/browser/browser_thread.h" 37 #include "content/public/browser/browser_thread.h"
39 #include "content/public/browser/cookie_store_factory.h" 38 #include "content/public/browser/cookie_store_factory.h"
40 #include "content/public/browser/notification_service.h" 39 #include "content/public/browser/notification_service.h"
41 #include "content/public/browser/resource_context.h" 40 #include "content/public/browser/resource_context.h"
42 #include "content/public/browser/storage_partition.h" 41 #include "content/public/browser/storage_partition.h"
43 #include "extensions/browser/extension_protocols.h" 42 #include "extensions/browser/extension_protocols.h"
44 #include "extensions/common/constants.h" 43 #include "extensions/common/constants.h"
45 #include "net/base/cache_type.h" 44 #include "net/base/cache_type.h"
45 #include "net/base/sdch_dictionary_fetcher.h"
46 #include "net/base/sdch_manager.h" 46 #include "net/base/sdch_manager.h"
47 #include "net/ftp/ftp_network_layer.h" 47 #include "net/ftp/ftp_network_layer.h"
48 #include "net/http/http_cache.h" 48 #include "net/http/http_cache.h"
49 #include "net/ssl/server_bound_cert_service.h" 49 #include "net/ssl/server_bound_cert_service.h"
50 #include "net/url_request/url_request_job_factory_impl.h" 50 #include "net/url_request/url_request_job_factory_impl.h"
51 #include "webkit/browser/quota/special_storage_policy.h" 51 #include "webkit/browser/quota/special_storage_policy.h"
52 52
53 #if defined(OS_ANDROID) || defined(OS_IOS) 53 #if defined(OS_ANDROID) || defined(OS_IOS)
54 #if defined(SPDY_PROXY_AUTH_VALUE) 54 #if defined(SPDY_PROXY_AUTH_VALUE)
55 #include "components/data_reduction_proxy/browser/data_reduction_proxy_settings. h" 55 #include "components/data_reduction_proxy/browser/data_reduction_proxy_settings. h"
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 ftp_factory_.get()); 527 ftp_factory_.get());
528 main_context->set_job_factory(main_job_factory_.get()); 528 main_context->set_job_factory(main_job_factory_.get());
529 529
530 #if defined(ENABLE_EXTENSIONS) 530 #if defined(ENABLE_EXTENSIONS)
531 InitializeExtensionsRequestContext(profile_params); 531 InitializeExtensionsRequestContext(profile_params);
532 #endif 532 #endif
533 533
534 // Setup the SDCHManager for this profile. 534 // Setup the SDCHManager for this profile.
535 sdch_manager_.reset(new net::SdchManager); 535 sdch_manager_.reset(new net::SdchManager);
536 sdch_manager_->set_sdch_fetcher( 536 sdch_manager_->set_sdch_fetcher(
537 new SdchDictionaryFetcher( 537 new net::SdchDictionaryFetcher(
538 sdch_manager_.get(), 538 sdch_manager_.get(),
539 // SdchDictionaryFetcher takes a reference to the Getter, and 539 // SdchDictionaryFetcher takes a reference to the Getter, and
540 // hence implicitly takes ownership. 540 // hence implicitly takes ownership.
541 new net::TrivialURLRequestContextGetter( 541 new net::TrivialURLRequestContextGetter(
542 main_context, 542 main_context,
543 content::BrowserThread::GetMessageLoopProxyForThread( 543 content::BrowserThread::GetMessageLoopProxyForThread(
544 content::BrowserThread::IO)))); 544 content::BrowserThread::IO))));
545 main_context->set_sdch_manager(sdch_manager_.get()); 545 main_context->set_sdch_manager(sdch_manager_.get());
546 546
547 // Create a media request context based on the main context, but using a 547 // Create a media request context based on the main context, but using a
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 domain_reliability::DomainReliabilityClearMode mode, 799 domain_reliability::DomainReliabilityClearMode mode,
800 const base::Closure& completion) { 800 const base::Closure& completion) {
801 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 801 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
802 DCHECK(initialized()); 802 DCHECK(initialized());
803 803
804 if (domain_reliability_monitor_) 804 if (domain_reliability_monitor_)
805 domain_reliability_monitor_->ClearBrowsingData(mode); 805 domain_reliability_monitor_->ClearBrowsingData(mode);
806 806
807 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, completion); 807 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, completion);
808 } 808 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_io_data.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698