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

Unified Diff: webkit/fileapi/file_system_context.h

Issue 11648027: Extract external file systems handling from isolated context. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 12 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: webkit/fileapi/file_system_context.h
diff --git a/webkit/fileapi/file_system_context.h b/webkit/fileapi/file_system_context.h
index e71fe73f0c8deb3ec5c44836d9f74c9af58f0ca3..9704f20e4575a559faf67c1f10f9eab360d9bbe5 100644
--- a/webkit/fileapi/file_system_context.h
+++ b/webkit/fileapi/file_system_context.h
@@ -19,6 +19,10 @@
class FilePath;
+namespace fileapi {
+class ExternalMountPoints;
+}
+
namespace quota {
class QuotaManagerProxy;
class SpecialStoragePolicy;
@@ -201,6 +205,9 @@ class WEBKIT_STORAGE_EXPORT FileSystemContext
// The base path of the storage partition for this context.
const FilePath partition_path_;
+ // External mount points specific to the context.
+ scoped_refptr<fileapi::ExternalMountPoints> external_mount_points_;
+
// For syncable file systems.
scoped_ptr<LocalFileChangeTracker> change_tracker_;
scoped_refptr<LocalFileSyncContext> sync_context_;

Powered by Google App Engine
This is Rietveld 408576698