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

Side by Side Diff: extensions/common/permissions/api_permission.h

Issue 50703013: fileSystemProvider: First cut at implementing fileSystemProvider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 7 years, 1 month 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
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/mount/test.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 kDownloadsShelf, 76 kDownloadsShelf,
77 kEchoPrivate, 77 kEchoPrivate,
78 kEnterprisePlatformKeysPrivate, 78 kEnterprisePlatformKeysPrivate,
79 kExperimental, 79 kExperimental,
80 kFeedbackPrivate, 80 kFeedbackPrivate,
81 kFileBrowserHandler, 81 kFileBrowserHandler,
82 kFileBrowserHandlerInternal, 82 kFileBrowserHandlerInternal,
83 kFileBrowserPrivate, 83 kFileBrowserPrivate,
84 kFileSystem, 84 kFileSystem,
85 kFileSystemDirectory, 85 kFileSystemDirectory,
86 kFileSystemProvider,
86 kFileSystemRetainEntries, 87 kFileSystemRetainEntries,
87 kFileSystemWrite, 88 kFileSystemWrite,
88 kFileSystemWriteDirectory, 89 kFileSystemWriteDirectory,
89 kFontSettings, 90 kFontSettings,
90 kFullscreen, 91 kFullscreen,
91 kGeolocation, 92 kGeolocation,
92 kHistory, 93 kHistory,
93 kHomepage, 94 kHomepage,
94 kIdentity, 95 kIdentity,
95 kIdentityPrivate, 96 kIdentityPrivate,
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 const char* const name_; 328 const char* const name_;
328 const int flags_; 329 const int flags_;
329 const int l10n_message_id_; 330 const int l10n_message_id_;
330 const PermissionMessage::ID message_id_; 331 const PermissionMessage::ID message_id_;
331 const APIPermissionConstructor api_permission_constructor_; 332 const APIPermissionConstructor api_permission_constructor_;
332 }; 333 };
333 334
334 } // namespace extensions 335 } // namespace extensions
335 336
336 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ 337 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/file_system_provider/mount/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698