Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" | |
| 28 #include "chrome/browser/net/predictor.h" | 27 #include "chrome/browser/net/predictor.h" |
| 29 #include "chrome/browser/net/sqlite_server_bound_cert_store.h" | 28 #include "chrome/browser/net/sqlite_server_bound_cert_store.h" |
| 30 #include "chrome/browser/profiles/profile.h" | 29 #include "chrome/browser/profiles/profile.h" |
| 31 #include "chrome/common/chrome_constants.h" | 30 #include "chrome/common/chrome_constants.h" |
| 32 #include "chrome/common/chrome_switches.h" | 31 #include "chrome/common/chrome_switches.h" |
| 33 #include "chrome/common/pref_names.h" | 32 #include "chrome/common/pref_names.h" |
| 34 #include "chrome/common/url_constants.h" | 33 #include "chrome/common/url_constants.h" |
| 35 #include "components/domain_reliability/monitor.h" | 34 #include "components/domain_reliability/monitor.h" |
| 36 #include "content/public/browser/browser_thread.h" | 35 #include "content/public/browser/browser_thread.h" |
| 37 #include "content/public/browser/cookie_store_factory.h" | 36 #include "content/public/browser/cookie_store_factory.h" |
| 38 #include "content/public/browser/notification_service.h" | 37 #include "content/public/browser/notification_service.h" |
| 39 #include "content/public/browser/resource_context.h" | 38 #include "content/public/browser/resource_context.h" |
| 40 #include "content/public/browser/storage_partition.h" | 39 #include "content/public/browser/storage_partition.h" |
| 41 #include "extensions/browser/extension_protocols.h" | 40 #include "extensions/browser/extension_protocols.h" |
| 42 #include "extensions/common/constants.h" | 41 #include "extensions/common/constants.h" |
| 43 #include "net/base/cache_type.h" | 42 #include "net/base/cache_type.h" |
| 44 #include "net/base/sdch_dictionary_fetcher.h" | 43 #include "net/base/sdch_dictionary_fetcher.h" |
| 45 #include "net/base/sdch_manager.h" | 44 #include "net/base/sdch_manager.h" |
| 46 #include "net/ftp/ftp_network_layer.h" | 45 #include "net/ftp/ftp_network_layer.h" |
| 47 #include "net/http/http_cache.h" | 46 #include "net/http/http_cache.h" |
| 47 #include "net/http/http_server_properties_manager.h" | |
| 48 #include "net/ssl/server_bound_cert_service.h" | 48 #include "net/ssl/server_bound_cert_service.h" |
| 49 #include "net/url_request/url_request_job_factory_impl.h" | 49 #include "net/url_request/url_request_job_factory_impl.h" |
| 50 #include "webkit/browser/quota/special_storage_policy.h" | 50 #include "webkit/browser/quota/special_storage_policy.h" |
| 51 | 51 |
| 52 namespace { | 52 namespace { |
| 53 | 53 |
| 54 net::BackendType ChooseCacheBackendType() { | 54 net::BackendType ChooseCacheBackendType() { |
| 55 #if defined(OS_ANDROID) | 55 #if defined(OS_ANDROID) |
| 56 return net::CACHE_BACKEND_SIMPLE; | 56 return net::CACHE_BACKEND_SIMPLE; |
| 57 #else | 57 #else |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 306 | 306 |
| 307 void ProfileImplIOData::Handle::LazyInitialize() const { | 307 void ProfileImplIOData::Handle::LazyInitialize() const { |
| 308 if (initialized_) | 308 if (initialized_) |
| 309 return; | 309 return; |
| 310 | 310 |
| 311 // Set initialized_ to true at the beginning in case any of the objects | 311 // Set initialized_ to true at the beginning in case any of the objects |
| 312 // below try to get the ResourceContext pointer. | 312 // below try to get the ResourceContext pointer. |
| 313 initialized_ = true; | 313 initialized_ = true; |
| 314 PrefService* pref_service = profile_->GetPrefs(); | 314 PrefService* pref_service = profile_->GetPrefs(); |
| 315 io_data_->http_server_properties_manager_ = | 315 io_data_->http_server_properties_manager_ = |
| 316 new chrome_browser_net::HttpServerPropertiesManager(pref_service); | 316 new net::HttpServerPropertiesManager( |
| 317 pref_service, | |
| 318 prefs::kHttpServerProperties, | |
|
droger
2014/07/08 13:06:02
It seems that the kHttpServerProperties constant i
mef
2014/07/08 13:32:00
Good question. We could move it to http_server_pro
Bernhard Bauer
2014/07/08 16:02:47
Do you mean moving the declaration, or where it's
mef
2014/07/08 16:19:54
We were discussing moving both declaration and def
Bernhard Bauer
2014/07/08 17:02:45
Yeah, exactly. We would like all pref names used i
mef
2014/07/08 18:04:32
Done.
| |
| 319 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI), | |
| 320 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); | |
| 317 io_data_->set_http_server_properties( | 321 io_data_->set_http_server_properties( |
| 318 scoped_ptr<net::HttpServerProperties>( | 322 scoped_ptr<net::HttpServerProperties>( |
| 319 io_data_->http_server_properties_manager_)); | 323 io_data_->http_server_properties_manager_)); |
| 320 io_data_->session_startup_pref()->Init( | 324 io_data_->session_startup_pref()->Init( |
| 321 prefs::kRestoreOnStartup, pref_service); | 325 prefs::kRestoreOnStartup, pref_service); |
| 322 io_data_->session_startup_pref()->MoveToThread( | 326 io_data_->session_startup_pref()->MoveToThread( |
| 323 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); | 327 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); |
| 324 #if defined(FULL_SAFE_BROWSING) || defined(MOBILE_SAFE_BROWSING) | 328 #if defined(FULL_SAFE_BROWSING) || defined(MOBILE_SAFE_BROWSING) |
| 325 io_data_->safe_browsing_enabled()->Init(prefs::kSafeBrowsingEnabled, | 329 io_data_->safe_browsing_enabled()->Init(prefs::kSafeBrowsingEnabled, |
| 326 pref_service); | 330 pref_service); |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 750 const base::Closure& completion) { | 754 const base::Closure& completion) { |
| 751 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 755 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 752 DCHECK(initialized()); | 756 DCHECK(initialized()); |
| 753 | 757 |
| 754 DCHECK(transport_security_state()); | 758 DCHECK(transport_security_state()); |
| 755 // Completes synchronously. | 759 // Completes synchronously. |
| 756 transport_security_state()->DeleteAllDynamicDataSince(time); | 760 transport_security_state()->DeleteAllDynamicDataSince(time); |
| 757 DCHECK(http_server_properties_manager_); | 761 DCHECK(http_server_properties_manager_); |
| 758 http_server_properties_manager_->Clear(completion); | 762 http_server_properties_manager_->Clear(completion); |
| 759 } | 763 } |
| OLD | NEW |