| 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/public/platform/WebFileSystem.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h
" | 9 #include "third_party/WebKit/public/platform/WebFileSystemType.h" |
| 10 | 10 |
| 11 namespace fileapi { | 11 namespace fileapi { |
| 12 | 12 |
| 13 enum FileSystemType { | 13 enum FileSystemType { |
| 14 // Indicates uninitialized or invalid filesystem type. | 14 // Indicates uninitialized or invalid filesystem type. |
| 15 kFileSystemTypeUnknown = -1, | 15 kFileSystemTypeUnknown = -1, |
| 16 | 16 |
| 17 // ------------------------------------------------------------------------ | 17 // ------------------------------------------------------------------------ |
| 18 // Public FileSystem types, that are embedded in filesystem: URL and exposed | 18 // Public FileSystem types, that are embedded in filesystem: URL and exposed |
| 19 // to WebKit/renderer. Both Chrome and WebKit know how to handle these types. | 19 // to WebKit/renderer. Both Chrome and WebKit know how to handle these types. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 // -------------------------------------------------------------------- | 99 // -------------------------------------------------------------------- |
| 100 // Marks the end of internal type enum. (This is not the actual fs type) | 100 // Marks the end of internal type enum. (This is not the actual fs type) |
| 101 // New internal filesystem types must be added above this line. | 101 // New internal filesystem types must be added above this line. |
| 102 kFileSystemInternalTypeEnumEnd, | 102 kFileSystemInternalTypeEnumEnd, |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 } // namespace fileapi | 105 } // namespace fileapi |
| 106 | 106 |
| 107 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ | 107 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TYPES_H_ |
| OLD | NEW |