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

Unified Diff: content/public/test/test_file_system_context.cc

Issue 259083002: Move mock_special_storage_policy from webkit/ to content/public/test/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/sandbox_file_system_test_helper.cc ('k') | webkit/browser/database/database_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_file_system_context.cc
diff --git a/content/public/test/test_file_system_context.cc b/content/public/test/test_file_system_context.cc
index aa954de5ced30ff5a6ce9e894b6a17eb15ce6d16..f577af40d50fd95f8e5750cbf3d1c6aebd3f51c7 100644
--- a/content/public/test/test_file_system_context.cc
+++ b/content/public/test/test_file_system_context.cc
@@ -5,12 +5,12 @@
#include "content/public/test/test_file_system_context.h"
#include "base/memory/scoped_vector.h"
+#include "content/public/test/mock_special_storage_policy.h"
#include "content/public/test/test_file_system_backend.h"
#include "content/public/test/test_file_system_options.h"
#include "webkit/browser/fileapi/external_mount_points.h"
#include "webkit/browser/fileapi/file_system_backend.h"
#include "webkit/browser/fileapi/file_system_context.h"
-#include "webkit/browser/quota/mock_special_storage_policy.h"
namespace content {
@@ -33,7 +33,7 @@ CreateFileSystemContextWithAdditionalProvidersForTesting(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
fileapi::ExternalMountPoints::CreateRefCounted().get(),
- make_scoped_refptr(new quota::MockSpecialStoragePolicy()).get(),
+ make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
std::vector<fileapi::URLRequestAutoMountHandler>(),
@@ -51,7 +51,7 @@ CreateFileSystemContextWithAutoMountersForTesting(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
fileapi::ExternalMountPoints::CreateRefCounted().get(),
- make_scoped_refptr(new quota::MockSpecialStoragePolicy()).get(),
+ make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
auto_mounters,
@@ -67,7 +67,7 @@ fileapi::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
base::MessageLoopProxy::current().get(),
base::MessageLoopProxy::current().get(),
fileapi::ExternalMountPoints::CreateRefCounted().get(),
- make_scoped_refptr(new quota::MockSpecialStoragePolicy()).get(),
+ make_scoped_refptr(new MockSpecialStoragePolicy()).get(),
quota_manager_proxy,
additional_providers.Pass(),
std::vector<fileapi::URLRequestAutoMountHandler>(),
« no previous file with comments | « content/public/test/sandbox_file_system_test_helper.cc ('k') | webkit/browser/database/database_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698