| 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/quota_policy_channel_id_store.h" |
| 29 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.
h" | 30 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.
h" |
| 30 #include "chrome/browser/net/sqlite_channel_id_store.h" | |
| 31 #include "chrome/browser/profiles/profile.h" | 31 #include "chrome/browser/profiles/profile.h" |
| 32 #include "chrome/common/chrome_constants.h" | 32 #include "chrome/common/chrome_constants.h" |
| 33 #include "chrome/common/chrome_switches.h" | 33 #include "chrome/common/chrome_switches.h" |
| 34 #include "chrome/common/pref_names.h" | 34 #include "chrome/common/pref_names.h" |
| 35 #include "chrome/common/url_constants.h" | 35 #include "chrome/common/url_constants.h" |
| 36 #include "components/domain_reliability/monitor.h" | 36 #include "components/domain_reliability/monitor.h" |
| 37 #include "content/public/browser/browser_thread.h" | 37 #include "content/public/browser/browser_thread.h" |
| 38 #include "content/public/browser/cookie_store_factory.h" | 38 #include "content/public/browser/cookie_store_factory.h" |
| 39 #include "content/public/browser/notification_service.h" | 39 #include "content/public/browser/notification_service.h" |
| 40 #include "content/public/browser/resource_context.h" | 40 #include "content/public/browser/resource_context.h" |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 chrome_browser_net::GetCookieCryptoDelegate(); | 520 chrome_browser_net::GetCookieCryptoDelegate(); |
| 521 cookie_store = content::CreateCookieStore(cookie_config); | 521 cookie_store = content::CreateCookieStore(cookie_config); |
| 522 } | 522 } |
| 523 | 523 |
| 524 main_context->set_cookie_store(cookie_store.get()); | 524 main_context->set_cookie_store(cookie_store.get()); |
| 525 | 525 |
| 526 // Setup server bound cert service. | 526 // Setup server bound cert service. |
| 527 if (!channel_id_service) { | 527 if (!channel_id_service) { |
| 528 DCHECK(!lazy_params_->channel_id_path.empty()); | 528 DCHECK(!lazy_params_->channel_id_path.empty()); |
| 529 | 529 |
| 530 scoped_refptr<SQLiteChannelIDStore> channel_id_db = | 530 scoped_refptr<QuotaPolicyChannelIDStore> channel_id_db = |
| 531 new SQLiteChannelIDStore( | 531 new QuotaPolicyChannelIDStore( |
| 532 lazy_params_->channel_id_path, | 532 lazy_params_->channel_id_path, |
| 533 BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( | 533 BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( |
| 534 BrowserThread::GetBlockingPool()->GetSequenceToken()), | 534 BrowserThread::GetBlockingPool()->GetSequenceToken()), |
| 535 lazy_params_->special_storage_policy.get()); | 535 lazy_params_->special_storage_policy.get()); |
| 536 channel_id_service = new net::ChannelIDService( | 536 channel_id_service = new net::ChannelIDService( |
| 537 new net::DefaultChannelIDStore(channel_id_db.get()), | 537 new net::DefaultChannelIDStore(channel_id_db.get()), |
| 538 base::WorkerPool::GetTaskRunner(true)); | 538 base::WorkerPool::GetTaskRunner(true)); |
| 539 } | 539 } |
| 540 | 540 |
| 541 set_channel_id_service(channel_id_service); | 541 set_channel_id_service(channel_id_service); |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 const base::Closure& completion) { | 835 const base::Closure& completion) { |
| 836 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 836 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 837 DCHECK(initialized()); | 837 DCHECK(initialized()); |
| 838 | 838 |
| 839 DCHECK(transport_security_state()); | 839 DCHECK(transport_security_state()); |
| 840 // Completes synchronously. | 840 // Completes synchronously. |
| 841 transport_security_state()->DeleteAllDynamicDataSince(time); | 841 transport_security_state()->DeleteAllDynamicDataSince(time); |
| 842 DCHECK(http_server_properties_manager_); | 842 DCHECK(http_server_properties_manager_); |
| 843 http_server_properties_manager_->Clear(completion); | 843 http_server_properties_manager_->Clear(completion); |
| 844 } | 844 } |
| OLD | NEW |