| Index: chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| index 15c5b01d26d0fc86754444e2fcc1e1b4b48f3d6f..a5ec397fd09a3b03e317b102ff791e09d4a4b4f3 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| @@ -144,16 +144,14 @@ class TestStoragePartition : public StoragePartition {
|
| virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE {
|
| return NULL;
|
| }
|
| - virtual quota::QuotaManager* GetQuotaManager() OVERRIDE {
|
| - return NULL;
|
| - }
|
| + virtual storage::QuotaManager* GetQuotaManager() OVERRIDE { return NULL; }
|
| virtual content::AppCacheService* GetAppCacheService() OVERRIDE {
|
| return NULL;
|
| }
|
| - virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE {
|
| + virtual storage::FileSystemContext* GetFileSystemContext() OVERRIDE {
|
| return NULL;
|
| }
|
| - virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE {
|
| + virtual storage::DatabaseTracker* GetDatabaseTracker() OVERRIDE {
|
| return NULL;
|
| }
|
| virtual content::DOMStorageContext* GetDOMStorageContext() OVERRIDE {
|
| @@ -827,7 +825,7 @@ class BrowsingDataRemoverTest : public testing::Test,
|
| #endif
|
| }
|
|
|
| - quota::SpecialStoragePolicy* mock_policy() {
|
| + storage::SpecialStoragePolicy* mock_policy() {
|
| #if defined(ENABLE_EXTENSIONS)
|
| return mock_policy_;
|
| #else
|
|
|