| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |