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

Unified Diff: webkit/fileapi/file_system_types.h

Issue 14096022: Make MountPointProvider pluggable from outside webkit/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix etc Created 7 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
Index: webkit/fileapi/file_system_types.h
diff --git a/webkit/fileapi/file_system_types.h b/webkit/fileapi/file_system_types.h
index 11b5fa3f5a63e42e6598d2fc4a7099f72661bd05..073f67e5a384d394890ab8138fd2e381fe55ce22 100644
--- a/webkit/fileapi/file_system_types.h
+++ b/webkit/fileapi/file_system_types.h
@@ -37,6 +37,9 @@ enum FileSystemType {
kFileSystemTypeExternal = WebKit::WebFileSystemTypeExternal,
// ------------------------------------------------------------------------
+ // Marks the beginning of internal type enum. (This is not the actual fs type)
+ kFileSystemInternalTypeEnumStart = 99,
+
// Private FileSystem types, that should not appear in filesystem: URL as
// WebKit has no idea how to handle those types.
//
@@ -47,7 +50,7 @@ enum FileSystemType {
// See the comments for IsolatedContext and/or FileSystemURL for more details.
// Should be used only for testing.
- kFileSystemTypeTest = 100,
+ kFileSystemTypeTest,
// Indicates a local filesystem where we can access files using native
// local path.
@@ -82,6 +85,11 @@ enum FileSystemType {
// kFileSystemTypeNativeLocal. On Chrome OS, the path is parsed by
// the handlers of kFileSystemTypeExternal.
kFileSystemTypeNativeForPlatformApp,
+
+ // --------------------------------------------------------------------
+ // Marks the end of internal type enum. (This is not the actual fs type)
+ // New internal filesystem types must be added above this line.
+ kFileSystemInternalTypeEnumEnd,
};
} // namespace fileapi
« no previous file with comments | « webkit/fileapi/file_system_quota_client_unittest.cc ('k') | webkit/fileapi/file_system_url_request_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698