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

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

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/test_file_system_backend.cc ('k') | content/public/test/test_file_system_context.cc » ('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.h
diff --git a/content/public/test/test_file_system_context.h b/content/public/test/test_file_system_context.h
index 8b7c872b87e7999f41028365fa4c2be0fda58670..068fa8109d7a8672786710245b93cee9d7b99537 100644
--- a/content/public/test/test_file_system_context.h
+++ b/content/public/test/test_file_system_context.h
@@ -7,39 +7,38 @@
#include "base/files/file_path.h"
#include "base/memory/scoped_vector.h"
-#include "webkit/browser/fileapi/file_system_context.h"
+#include "storage/browser/fileapi/file_system_context.h"
namespace quota {
class QuotaManagerProxy;
class SpecialStoragePolicy;
}
-namespace fileapi {
+namespace storage {
class FileSystemBackend;
}
namespace content {
-fileapi::FileSystemContext* CreateFileSystemContextForTesting(
+storage::FileSystemContext* CreateFileSystemContextForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path);
// The caller is responsible for including TestFileSystemBackend in
// |additional_providers| if needed.
-fileapi::FileSystemContext*
-CreateFileSystemContextWithAdditionalProvidersForTesting(
- quota::QuotaManagerProxy* quota_manager_proxy,
- ScopedVector<fileapi::FileSystemBackend> additional_providers,
- const base::FilePath& base_path);
+storage::FileSystemContext*
+ CreateFileSystemContextWithAdditionalProvidersForTesting(
+ quota::QuotaManagerProxy* quota_manager_proxy,
+ ScopedVector<storage::FileSystemBackend> additional_providers,
+ const base::FilePath& base_path);
-fileapi::FileSystemContext*
-CreateFileSystemContextWithAutoMountersForTesting(
+storage::FileSystemContext* CreateFileSystemContextWithAutoMountersForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
- ScopedVector<fileapi::FileSystemBackend> additional_providers,
- const std::vector<fileapi::URLRequestAutoMountHandler>& auto_mounters,
+ ScopedVector<storage::FileSystemBackend> additional_providers,
+ const std::vector<storage::URLRequestAutoMountHandler>& auto_mounters,
const base::FilePath& base_path);
-fileapi::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
+storage::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path);
« no previous file with comments | « content/public/test/test_file_system_backend.cc ('k') | content/public/test/test_file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698