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 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 #include "net/http/transport_security_state.h" | 68 #include "net/http/transport_security_state.h" |
69 #include "net/ssl/channel_id_service.h" | 69 #include "net/ssl/channel_id_service.h" |
70 #include "net/ssl/channel_id_store.h" | 70 #include "net/ssl/channel_id_store.h" |
71 #include "net/url_request/url_request_context.h" | 71 #include "net/url_request/url_request_context.h" |
72 #include "net/url_request/url_request_context_getter.h" | 72 #include "net/url_request/url_request_context_getter.h" |
73 #include "webkit/browser/quota/quota_manager.h" | 73 #include "webkit/browser/quota/quota_manager.h" |
74 #include "webkit/browser/quota/special_storage_policy.h" | 74 #include "webkit/browser/quota/special_storage_policy.h" |
75 #include "webkit/common/quota/quota_types.h" | 75 #include "webkit/common/quota/quota_types.h" |
76 | 76 |
77 #if defined(OS_CHROMEOS) | 77 #if defined(OS_CHROMEOS) |
78 #include "chrome/browser/chromeos/login/users/user_manager.h" | |
79 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 78 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
80 #include "chromeos/attestation/attestation_constants.h" | 79 #include "chromeos/attestation/attestation_constants.h" |
81 #include "chromeos/dbus/cryptohome_client.h" | 80 #include "chromeos/dbus/cryptohome_client.h" |
82 #include "chromeos/dbus/dbus_thread_manager.h" | 81 #include "chromeos/dbus/dbus_thread_manager.h" |
83 #include "components/user_manager/user.h" | 82 #include "components/user_manager/user.h" |
84 #endif | 83 #endif |
85 | 84 |
86 #if defined(ENABLE_EXTENSIONS) | 85 #if defined(ENABLE_EXTENSIONS) |
87 #include "chrome/browser/apps/ephemeral_app_service.h" | 86 #include "chrome/browser/apps/ephemeral_app_service.h" |
88 #include "chrome/browser/extensions/activity_log/activity_log.h" | 87 #include "chrome/browser/extensions/activity_log/activity_log.h" |
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1183 waiting_for_clear_webrtc_logs_ = false; | 1182 waiting_for_clear_webrtc_logs_ = false; |
1184 NotifyAndDeleteIfDone(); | 1183 NotifyAndDeleteIfDone(); |
1185 } | 1184 } |
1186 #endif | 1185 #endif |
1187 | 1186 |
1188 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { | 1187 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { |
1189 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 1188 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
1190 waiting_for_clear_domain_reliability_monitor_ = false; | 1189 waiting_for_clear_domain_reliability_monitor_ = false; |
1191 NotifyAndDeleteIfDone(); | 1190 NotifyAndDeleteIfDone(); |
1192 } | 1191 } |
OLD | NEW |