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

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

Issue 137923003: Change fileapi namespace to content for files that are moved under content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 6 years, 11 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 5539c4b0de1171ea12d6f617533eb21f01b7312c..19a4fc4376f3de28c3a9cbc5e22807246c087d30 100644
--- a/content/public/test/test_file_system_context.h
+++ b/content/public/test/test_file_system_context.h
@@ -14,25 +14,28 @@ class SpecialStoragePolicy;
}
namespace fileapi {
-
class FileSystemContext;
class FileSystemBackend;
+}
+
+namespace content {
-FileSystemContext* CreateFileSystemContextForTesting(
+fileapi::FileSystemContext* CreateFileSystemContextForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path);
// The caller is responsible for including TestFileSystemBackend in
// |additional_providers| if needed.
-FileSystemContext* CreateFileSystemContextWithAdditionalProvidersForTesting(
+fileapi::FileSystemContext*
+CreateFileSystemContextWithAdditionalProvidersForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
- ScopedVector<FileSystemBackend> additional_providers,
+ ScopedVector<fileapi::FileSystemBackend> additional_providers,
const base::FilePath& base_path);
-FileSystemContext* CreateIncognitoFileSystemContextForTesting(
+fileapi::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path);
-} // namespace fileapi
+} // namespace content
#endif // CONTENT_PUBLIC_TEST_TEST_FILE_SYSTEM_CONTEXT_H_
« 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