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 <memory> | 7 #include <memory> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "components/cookie_config/cookie_store_util.h" | 44 #include "components/cookie_config/cookie_store_util.h" |
45 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" | 45 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_io_d
ata.h" |
46 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" | 46 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett
ings.h" |
47 #include "components/data_reduction_proxy/core/browser/data_store_impl.h" | 47 #include "components/data_reduction_proxy/core/browser/data_store_impl.h" |
48 #include "components/domain_reliability/monitor.h" | 48 #include "components/domain_reliability/monitor.h" |
49 #include "components/net_log/chrome_net_log.h" | 49 #include "components/net_log/chrome_net_log.h" |
50 #include "components/prefs/json_pref_store.h" | 50 #include "components/prefs/json_pref_store.h" |
51 #include "components/prefs/pref_filter.h" | 51 #include "components/prefs/pref_filter.h" |
52 #include "components/prefs/pref_member.h" | 52 #include "components/prefs/pref_member.h" |
53 #include "components/prefs/pref_service.h" | 53 #include "components/prefs/pref_service.h" |
54 #include "components/previews/previews_io_data.h" | 54 #include "components/previews/core/previews_io_data.h" |
55 #include "components/previews/previews_ui_service.h" | 55 #include "components/previews/core/previews_ui_service.h" |
56 #include "content/public/browser/browser_thread.h" | 56 #include "content/public/browser/browser_thread.h" |
57 #include "content/public/browser/cookie_store_factory.h" | 57 #include "content/public/browser/cookie_store_factory.h" |
58 #include "content/public/browser/notification_service.h" | 58 #include "content/public/browser/notification_service.h" |
59 #include "content/public/browser/resource_context.h" | 59 #include "content/public/browser/resource_context.h" |
60 #include "content/public/browser/storage_partition.h" | 60 #include "content/public/browser/storage_partition.h" |
61 #include "extensions/browser/extension_protocols.h" | 61 #include "extensions/browser/extension_protocols.h" |
62 #include "extensions/common/constants.h" | 62 #include "extensions/common/constants.h" |
63 #include "net/base/cache_type.h" | 63 #include "net/base/cache_type.h" |
64 #include "net/base/sdch_manager.h" | 64 #include "net/base/sdch_manager.h" |
65 #include "net/cookies/cookie_store.h" | 65 #include "net/cookies/cookie_store.h" |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 const base::Closure& completion) { | 804 const base::Closure& completion) { |
805 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 805 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
806 DCHECK(initialized()); | 806 DCHECK(initialized()); |
807 | 807 |
808 DCHECK(transport_security_state()); | 808 DCHECK(transport_security_state()); |
809 // Completes synchronously. | 809 // Completes synchronously. |
810 transport_security_state()->DeleteAllDynamicDataSince(time); | 810 transport_security_state()->DeleteAllDynamicDataSince(time); |
811 DCHECK(http_server_properties_manager_); | 811 DCHECK(http_server_properties_manager_); |
812 http_server_properties_manager_->Clear(completion); | 812 http_server_properties_manager_->Clear(completion); |
813 } | 813 } |
OLD | NEW |