Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: webkit/common/fileapi/file_system_types.h

Issue 16091011: 2nd try: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: splint_link fix Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698