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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 #if defined(OS_CHROMEOS) | 111 #if defined(OS_CHROMEOS) |
112 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 112 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
113 #include "chromeos/attestation/attestation_constants.h" | 113 #include "chromeos/attestation/attestation_constants.h" |
114 #include "chromeos/cryptohome/cryptohome_parameters.h" | 114 #include "chromeos/cryptohome/cryptohome_parameters.h" |
115 #include "chromeos/dbus/cryptohome_client.h" | 115 #include "chromeos/dbus/cryptohome_client.h" |
116 #include "chromeos/dbus/dbus_thread_manager.h" | 116 #include "chromeos/dbus/dbus_thread_manager.h" |
117 #include "components/user_manager/user.h" | 117 #include "components/user_manager/user.h" |
118 #endif | 118 #endif |
119 | 119 |
120 #if defined(ENABLE_WEBRTC) | 120 #if defined(ENABLE_WEBRTC) |
121 #include "chrome/browser/media/webrtc_log_list.h" | 121 #include "chrome/browser/media/webrtc/webrtc_log_list.h" |
122 #include "chrome/browser/media/webrtc_log_util.h" | 122 #include "chrome/browser/media/webrtc/webrtc_log_util.h" |
123 #endif | 123 #endif |
124 | 124 |
125 using base::UserMetricsAction; | 125 using base::UserMetricsAction; |
126 using content::BrowserContext; | 126 using content::BrowserContext; |
127 using content::BrowserThread; | 127 using content::BrowserThread; |
128 using content::DOMStorageContext; | 128 using content::DOMStorageContext; |
129 | 129 |
130 namespace { | 130 namespace { |
131 | 131 |
132 void UIThreadTrampolineHelper(const base::Closure& callback) { | 132 void UIThreadTrampolineHelper(const base::Closure& callback) { |
(...skipping 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1541 waiting_for_clear_offline_page_data_ = false; | 1541 waiting_for_clear_offline_page_data_ = false; |
1542 NotifyIfDone(); | 1542 NotifyIfDone(); |
1543 } | 1543 } |
1544 #endif | 1544 #endif |
1545 | 1545 |
1546 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { | 1546 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { |
1547 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 1547 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
1548 waiting_for_clear_domain_reliability_monitor_ = false; | 1548 waiting_for_clear_domain_reliability_monitor_ = false; |
1549 NotifyIfDone(); | 1549 NotifyIfDone(); |
1550 } | 1550 } |
OLD | NEW |