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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.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 <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 } 143 }
144 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE { 144 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE {
145 return NULL; 145 return NULL;
146 } 146 }
147 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE { 147 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE {
148 return NULL; 148 return NULL;
149 } 149 }
150 virtual content::AppCacheService* GetAppCacheService() OVERRIDE { 150 virtual content::AppCacheService* GetAppCacheService() OVERRIDE {
151 return NULL; 151 return NULL;
152 } 152 }
153 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE { 153 virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE {
154 return NULL; 154 return NULL;
155 } 155 }
156 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE { 156 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE {
157 return NULL; 157 return NULL;
158 } 158 }
159 virtual content::DOMStorageContext* GetDOMStorageContext() OVERRIDE { 159 virtual content::DOMStorageContext* GetDOMStorageContext() OVERRIDE {
160 return NULL; 160 return NULL;
161 } 161 }
162 virtual content::IndexedDBContext* GetIndexedDBContext() OVERRIDE { 162 virtual content::IndexedDBContext* GetIndexedDBContext() OVERRIDE {
163 return NULL; 163 return NULL;
(...skipping 1668 matching lines...) Expand 10 before | Expand all | Expand 10 after
1832 EXPECT_EQ(1u, tester.clear_count()); 1832 EXPECT_EQ(1u, tester.clear_count());
1833 EXPECT_EQ(CLEAR_CONTEXTS, tester.last_clear_mode()); 1833 EXPECT_EQ(CLEAR_CONTEXTS, tester.last_clear_mode());
1834 } 1834 }
1835 1835
1836 TEST_F(BrowsingDataRemoverTest, DomainReliability_NoMonitor) { 1836 TEST_F(BrowsingDataRemoverTest, DomainReliability_NoMonitor) {
1837 BlockUntilBrowsingDataRemoved( 1837 BlockUntilBrowsingDataRemoved(
1838 BrowsingDataRemover::EVERYTHING, 1838 BrowsingDataRemover::EVERYTHING,
1839 BrowsingDataRemover::REMOVE_HISTORY | 1839 BrowsingDataRemover::REMOVE_HISTORY |
1840 BrowsingDataRemover::REMOVE_COOKIES, false); 1840 BrowsingDataRemover::REMOVE_COOKIES, false);
1841 } 1841 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698