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

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

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | Annotate | Revision Log
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #include "net/base/net_errors.h" 63 #include "net/base/net_errors.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"
66 #include "net/disk_cache/disk_cache.h" 66 #include "net/disk_cache/disk_cache.h"
67 #include "net/http/http_cache.h" 67 #include "net/http/http_cache.h"
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 "storage/browser/quota/quota_manager.h"
74 #include "webkit/browser/quota/special_storage_policy.h" 74 #include "storage/browser/quota/special_storage_policy.h"
75 #include "webkit/common/quota/quota_types.h" 75 #include "storage/common/quota/quota_types.h"
76 76
77 #if defined(OS_CHROMEOS) 77 #if defined(OS_CHROMEOS)
78 #include "chrome/browser/chromeos/profiles/profile_helper.h" 78 #include "chrome/browser/chromeos/profiles/profile_helper.h"
79 #include "chromeos/attestation/attestation_constants.h" 79 #include "chromeos/attestation/attestation_constants.h"
80 #include "chromeos/dbus/cryptohome_client.h" 80 #include "chromeos/dbus/cryptohome_client.h"
81 #include "chromeos/dbus/dbus_thread_manager.h" 81 #include "chromeos/dbus/dbus_thread_manager.h"
82 #include "components/user_manager/user.h" 82 #include "components/user_manager/user.h"
83 #endif 83 #endif
84 84
85 #if defined(ENABLE_EXTENSIONS) 85 #if defined(ENABLE_EXTENSIONS)
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 waiting_for_clear_webrtc_logs_ = false; 1182 waiting_for_clear_webrtc_logs_ = false;
1183 NotifyAndDeleteIfDone(); 1183 NotifyAndDeleteIfDone();
1184 } 1184 }
1185 #endif 1185 #endif
1186 1186
1187 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { 1187 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() {
1188 DCHECK_CURRENTLY_ON(BrowserThread::UI); 1188 DCHECK_CURRENTLY_ON(BrowserThread::UI);
1189 waiting_for_clear_domain_reliability_monitor_ = false; 1189 waiting_for_clear_domain_reliability_monitor_ = false;
1190 NotifyAndDeleteIfDone(); 1190 NotifyAndDeleteIfDone();
1191 } 1191 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data/browsing_data_remover.h ('k') | chrome/browser/browsing_data/browsing_data_remover_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698