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

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

Issue 195923002: Add mechanism to auto mount file systems in response to a URL request. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile Created 6 years, 9 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
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 19a4fc4376f3de28c3a9cbc5e22807246c087d30..a68ed9bfcf739e76e8cd69fa55e81985761a82e9 100644
--- a/content/public/test/test_file_system_context.h
+++ b/content/public/test/test_file_system_context.h
@@ -7,6 +7,7 @@
#include "base/files/file_path.h"
#include "base/memory/scoped_vector.h"
+#include "webkit/browser/fileapi/file_system_context.h"
namespace quota {
class QuotaManagerProxy;
@@ -14,7 +15,6 @@ class SpecialStoragePolicy;
}
namespace fileapi {
-class FileSystemContext;
class FileSystemBackend;
}
@@ -32,6 +32,12 @@ CreateFileSystemContextWithAdditionalProvidersForTesting(
ScopedVector<fileapi::FileSystemBackend> additional_providers,
const base::FilePath& base_path);
+fileapi::FileSystemContext*
+CreateFileSystemContextWithAutoMountersForTesting(
+ quota::QuotaManagerProxy* quota_manager_proxy,
+ std::vector<fileapi::URLRequestAutoMountHandler> auto_mounters,
kinuko 2014/03/13 04:19:20 const ref
vandebo (ex-Chrome) 2014/03/13 20:19:32 Done.
+ const base::FilePath& base_path);
+
fileapi::FileSystemContext* CreateIncognitoFileSystemContextForTesting(
quota::QuotaManagerProxy* quota_manager_proxy,
const base::FilePath& base_path);

Powered by Google App Engine
This is Rietveld 408576698