| 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 |
| 80 kFileSystemTypeExternalFullPath, |
| 78 }; | 81 }; |
| 79 | 82 |
| 80 } // namespace fileapi | 83 } // namespace fileapi |
| 81 | 84 |
| 82 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ | 85 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
| OLD | NEW |