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_FILEAPI_FILE_SYSTEM_TYPES_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
7 | 7 |
8 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" | 8 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" |
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h
" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h
" |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // Indicates media filesystem to which we need special protocol to access, | 69 // Indicates media filesystem to which we need special protocol to access, |
70 // such as MTP or PTP. | 70 // such as MTP or PTP. |
71 kFileSystemTypeDeviceMedia, | 71 kFileSystemTypeDeviceMedia, |
72 | 72 |
73 // Indicates a Drive filesystem which provides access to Google Drive. | 73 // Indicates a Drive filesystem which provides access to Google Drive. |
74 kFileSystemTypeDrive, | 74 kFileSystemTypeDrive, |
75 | 75 |
76 // Indicates a Syncable sandboxed filesystem which can be backed by a | 76 // Indicates a Syncable sandboxed filesystem which can be backed by a |
77 // cloud storage service. | 77 // cloud storage service. |
78 kFileSystemTypeSyncable, | 78 kFileSystemTypeSyncable, |
| 79 |
| 80 // Indicates an external filesystem accessible by file paths from platform |
| 81 // Apps. As of writing, on non Chrome OS platform, this is merely a |
| 82 // kFileSystemTypeNativeLocal. On Chrome OS, the path is parsed by |
| 83 // the handlers of kFileSystemTypeExternal. |
| 84 kFileSystemTypeNativeForPlatformApp, |
79 }; | 85 }; |
80 | 86 |
81 } // namespace fileapi | 87 } // namespace fileapi |
82 | 88 |
83 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ | 89 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
OLD | NEW |