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 | 9 |
10 namespace fileapi { | 10 namespace fileapi { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 // Indicates media filesystem to which we need special protocol to access, | 68 // Indicates media filesystem to which we need special protocol to access, |
69 // such as MTP or PTP. | 69 // such as MTP or PTP. |
70 kFileSystemTypeDeviceMedia, | 70 kFileSystemTypeDeviceMedia, |
71 | 71 |
72 // Indicates a Drive filesystem which provides access to Google Drive. | 72 // Indicates a Drive filesystem which provides access to Google Drive. |
73 kFileSystemTypeDrive, | 73 kFileSystemTypeDrive, |
74 | 74 |
75 // Indicates a Syncable sandboxed filesystem which can be backed by a | 75 // Indicates a Syncable sandboxed filesystem which can be backed by a |
76 // cloud storage service. | 76 // cloud storage service. |
77 kFileSystemTypeSyncable, | 77 kFileSystemTypeSyncable, |
78 | |
79 // Indicates an external filesystem but with file path is specified by | |
80 // a full path, rather than a relative path from a mount point. | |
81 kFileSystemTypeExternalFullPath, | |
kinuko
2013/03/19 20:34:50
This filesystem type is being added not based on u
kinaba
2013/03/21 07:35:13
Changed to kFileSystemTypeNativeForPlatformApp.
U
| |
78 }; | 82 }; |
79 | 83 |
80 } // namespace fileapi | 84 } // namespace fileapi |
81 | 85 |
82 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ | 86 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
OLD | NEW |