| 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_factory.h" | 27 #include "chrome/browser/net/http_server_properties_manager_factory.h" |
| 28 #include "chrome/browser/net/predictor.h" | 28 #include "chrome/browser/net/predictor.h" |
| 29 #include "chrome/browser/net/sqlite_channel_id_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" |
| 35 #include "content/browser/net/quota_policy_channel_id_store.h" |
| 36 #include "content/public/browser/browser_thread.h" | 36 #include "content/public/browser/browser_thread.h" |
| 37 #include "content/public/browser/cookie_store_factory.h" | 37 #include "content/public/browser/cookie_store_factory.h" |
| 38 #include "content/public/browser/notification_service.h" | 38 #include "content/public/browser/notification_service.h" |
| 39 #include "content/public/browser/resource_context.h" | 39 #include "content/public/browser/resource_context.h" |
| 40 #include "content/public/browser/storage_partition.h" | 40 #include "content/public/browser/storage_partition.h" |
| 41 #include "extensions/browser/extension_protocols.h" | 41 #include "extensions/browser/extension_protocols.h" |
| 42 #include "extensions/common/constants.h" | 42 #include "extensions/common/constants.h" |
| 43 #include "net/base/cache_type.h" | 43 #include "net/base/cache_type.h" |
| 44 #include "net/base/sdch_dictionary_fetcher.h" | 44 #include "net/base/sdch_dictionary_fetcher.h" |
| 45 #include "net/base/sdch_manager.h" | 45 #include "net/base/sdch_manager.h" |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 chrome_browser_net::GetCookieCryptoDelegate(); | 433 chrome_browser_net::GetCookieCryptoDelegate(); |
| 434 cookie_store = content::CreateCookieStore(cookie_config); | 434 cookie_store = content::CreateCookieStore(cookie_config); |
| 435 } | 435 } |
| 436 | 436 |
| 437 main_context->set_cookie_store(cookie_store.get()); | 437 main_context->set_cookie_store(cookie_store.get()); |
| 438 | 438 |
| 439 // Setup server bound cert service. | 439 // Setup server bound cert service. |
| 440 if (!channel_id_service) { | 440 if (!channel_id_service) { |
| 441 DCHECK(!lazy_params_->channel_id_path.empty()); | 441 DCHECK(!lazy_params_->channel_id_path.empty()); |
| 442 | 442 |
| 443 scoped_refptr<SQLiteChannelIDStore> channel_id_db = | 443 scoped_refptr<content::QuotaPolicyChannelIDStore> channel_id_db = |
| 444 new SQLiteChannelIDStore( | 444 new content::QuotaPolicyChannelIDStore( |
| 445 lazy_params_->channel_id_path, | 445 lazy_params_->channel_id_path, |
| 446 BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( | 446 BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( |
| 447 BrowserThread::GetBlockingPool()->GetSequenceToken()), | 447 BrowserThread::GetBlockingPool()->GetSequenceToken()), |
| 448 lazy_params_->special_storage_policy.get()); | 448 lazy_params_->special_storage_policy.get()); |
| 449 channel_id_service = new net::ChannelIDService( | 449 channel_id_service = new net::ChannelIDService( |
| 450 new net::DefaultChannelIDStore(channel_id_db.get()), | 450 new net::DefaultChannelIDStore(channel_id_db.get()), |
| 451 base::WorkerPool::GetTaskRunner(true)); | 451 base::WorkerPool::GetTaskRunner(true)); |
| 452 } | 452 } |
| 453 | 453 |
| 454 set_channel_id_service(channel_id_service); | 454 set_channel_id_service(channel_id_service); |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 const base::Closure& completion) { | 751 const base::Closure& completion) { |
| 752 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 752 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 753 DCHECK(initialized()); | 753 DCHECK(initialized()); |
| 754 | 754 |
| 755 DCHECK(transport_security_state()); | 755 DCHECK(transport_security_state()); |
| 756 // Completes synchronously. | 756 // Completes synchronously. |
| 757 transport_security_state()->DeleteAllDynamicDataSince(time); | 757 transport_security_state()->DeleteAllDynamicDataSince(time); |
| 758 DCHECK(http_server_properties_manager_); | 758 DCHECK(http_server_properties_manager_); |
| 759 http_server_properties_manager_->Clear(completion); | 759 http_server_properties_manager_->Clear(completion); |
| 760 } | 760 } |
| OLD | NEW |