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

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

Issue 12717014: Launch packaged app with files on Drive on Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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_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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698