Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover.cc

Issue 2307083002: Cleanup: move WebRTC related files from chrome/browser/media to chrome/browser/media/webrtc/ (Closed)
Patch Set: Removed file wrongly resuscitated during rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698