| 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/WebFileSystem.h" | |
| 9 #include "third_party/WebKit/public/platform/WebFileSystemType.h" | 8 #include "third_party/WebKit/public/platform/WebFileSystemType.h" |
| 10 | 9 |
| 11 namespace fileapi { | 10 namespace fileapi { |
| 12 | 11 |
| 13 enum FileSystemType { | 12 enum FileSystemType { |
| 14 // Indicates uninitialized or invalid filesystem type. | 13 // Indicates uninitialized or invalid filesystem type. |
| 15 kFileSystemTypeUnknown = -1, | 14 kFileSystemTypeUnknown = -1, |
| 16 | 15 |
| 17 // ------------------------------------------------------------------------ | 16 // ------------------------------------------------------------------------ |
| 18 // Public FileSystem types, that are embedded in filesystem: URL and exposed | 17 // Public FileSystem types, that are embedded in filesystem: URL and exposed |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 110 |
| 112 // -------------------------------------------------------------------- | 111 // -------------------------------------------------------------------- |
| 113 // Marks the end of internal type enum. (This is not the actual fs type) | 112 // Marks the end of internal type enum. (This is not the actual fs type) |
| 114 // New internal filesystem types must be added above this line. | 113 // New internal filesystem types must be added above this line. |
| 115 kFileSystemInternalTypeEnumEnd, | 114 kFileSystemInternalTypeEnumEnd, |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace fileapi | 117 } // namespace fileapi |
| 119 | 118 |
| 120 #endif // WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_ | 119 #endif // WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_TYPES_H_ |
| OLD | NEW |