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

Side by Side Diff: webkit/common/fileapi/file_system_types.h

Issue 192573002: [fsp] Introduce file_system_provider::Service class for the FileSystemProvider API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplified. Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_ 5 #ifndef WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_
6 #define WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_ 6 #define WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_
7 7
8 #include "third_party/WebKit/public/platform/WebFileSystemType.h" 8 #include "third_party/WebKit/public/platform/WebFileSystemType.h"
9 9
10 namespace fileapi { 10 namespace fileapi {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 kFileSystemTypeForTransientFile, 112 kFileSystemTypeForTransientFile,
113 113
114 // Sandboxed private filesystem. This filesystem cannot be opened 114 // Sandboxed private filesystem. This filesystem cannot be opened
115 // via regular OpenFileSystem, and provides private filesystem space for 115 // via regular OpenFileSystem, and provides private filesystem space for
116 // given identifier in each origin. 116 // given identifier in each origin.
117 kFileSystemTypePluginPrivate, 117 kFileSystemTypePluginPrivate,
118 118
119 // A filesystem that is mounted via the Privet storage protocol. 119 // A filesystem that is mounted via the Privet storage protocol.
120 kFileSystemTypeCloudDevice, 120 kFileSystemTypeCloudDevice,
121 121
122 // A filesystem that is mounted via the FileSystemProvider API.
123 kFileSystemTypeProvided,
124
122 // -------------------------------------------------------------------- 125 // --------------------------------------------------------------------
123 // Marks the end of internal type enum. (This is not the actual fs type) 126 // Marks the end of internal type enum. (This is not the actual fs type)
124 // New internal filesystem types must be added above this line. 127 // New internal filesystem types must be added above this line.
125 kFileSystemInternalTypeEnumEnd, 128 kFileSystemInternalTypeEnumEnd,
126 }; 129 };
127 130
128 } // namespace fileapi 131 } // namespace fileapi
129 132
130 #endif // WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_ 133 #endif // WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/file_system_context.cc ('k') | webkit/common/fileapi/file_system_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698