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/browsing_data/browsing_data_remover.h" | 5 #include "chrome/browser/browsing_data/browsing_data_remover.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 #include "net/http/transport_security_state.h" | 67 #include "net/http/transport_security_state.h" |
68 #include "net/ssl/channel_id_service.h" | 68 #include "net/ssl/channel_id_service.h" |
69 #include "net/ssl/channel_id_store.h" | 69 #include "net/ssl/channel_id_store.h" |
70 #include "net/url_request/url_request_context.h" | 70 #include "net/url_request/url_request_context.h" |
71 #include "net/url_request/url_request_context_getter.h" | 71 #include "net/url_request/url_request_context_getter.h" |
72 #include "webkit/browser/quota/quota_manager.h" | 72 #include "webkit/browser/quota/quota_manager.h" |
73 #include "webkit/browser/quota/special_storage_policy.h" | 73 #include "webkit/browser/quota/special_storage_policy.h" |
74 #include "webkit/common/quota/quota_types.h" | 74 #include "webkit/common/quota/quota_types.h" |
75 | 75 |
76 #if defined(OS_CHROMEOS) | 76 #if defined(OS_CHROMEOS) |
77 #include "chrome/browser/chromeos/login/users/user_manager.h" | |
78 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 77 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
79 #include "chromeos/attestation/attestation_constants.h" | 78 #include "chromeos/attestation/attestation_constants.h" |
80 #include "chromeos/dbus/cryptohome_client.h" | 79 #include "chromeos/dbus/cryptohome_client.h" |
81 #include "chromeos/dbus/dbus_thread_manager.h" | 80 #include "chromeos/dbus/dbus_thread_manager.h" |
82 #include "components/user_manager/user.h" | 81 #include "components/user_manager/user.h" |
| 82 #include "components/user_manager/user_manager.h" |
83 #endif | 83 #endif |
84 | 84 |
85 #if defined(ENABLE_EXTENSIONS) | 85 #if defined(ENABLE_EXTENSIONS) |
86 #include "chrome/browser/apps/ephemeral_app_service.h" | 86 #include "chrome/browser/apps/ephemeral_app_service.h" |
87 #include "chrome/browser/extensions/activity_log/activity_log.h" | 87 #include "chrome/browser/extensions/activity_log/activity_log.h" |
88 #include "chrome/browser/extensions/extension_service.h" | 88 #include "chrome/browser/extensions/extension_service.h" |
89 #include "chrome/browser/extensions/extension_special_storage_policy.h" | 89 #include "chrome/browser/extensions/extension_special_storage_policy.h" |
90 #endif | 90 #endif |
91 | 91 |
92 #if defined(ENABLE_WEBRTC) | 92 #if defined(ENABLE_WEBRTC) |
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 waiting_for_clear_webrtc_logs_ = false; | 1178 waiting_for_clear_webrtc_logs_ = false; |
1179 NotifyAndDeleteIfDone(); | 1179 NotifyAndDeleteIfDone(); |
1180 } | 1180 } |
1181 #endif | 1181 #endif |
1182 | 1182 |
1183 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { | 1183 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { |
1184 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 1184 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
1185 waiting_for_clear_domain_reliability_monitor_ = false; | 1185 waiting_for_clear_domain_reliability_monitor_ = false; |
1186 NotifyAndDeleteIfDone(); | 1186 NotifyAndDeleteIfDone(); |
1187 } | 1187 } |
OLD | NEW |