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 CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 kDownloadsOpen, | 72 kDownloadsOpen, |
73 kDownloadsShelf, | 73 kDownloadsShelf, |
74 kEchoPrivate, | 74 kEchoPrivate, |
75 kEnterprisePlatformKeysPrivate, | 75 kEnterprisePlatformKeysPrivate, |
76 kExperimental, | 76 kExperimental, |
77 kFeedbackPrivate, | 77 kFeedbackPrivate, |
78 kFileBrowserHandler, | 78 kFileBrowserHandler, |
79 kFileBrowserHandlerInternal, | 79 kFileBrowserHandlerInternal, |
80 kFileBrowserPrivate, | 80 kFileBrowserPrivate, |
81 kFileSystem, | 81 kFileSystem, |
| 82 kFileSystemDirectory, |
82 kFileSystemRetainEntries, | 83 kFileSystemRetainEntries, |
83 kFileSystemWrite, | 84 kFileSystemWrite, |
84 kFontSettings, | 85 kFontSettings, |
85 kFullscreen, | 86 kFullscreen, |
86 kGeolocation, | 87 kGeolocation, |
87 kHistory, | 88 kHistory, |
88 kIdentity, | 89 kIdentity, |
89 kIdentityPrivate, | 90 kIdentityPrivate, |
90 kIdle, | 91 kIdle, |
91 kInfobars, | 92 kInfobars, |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 const char* const name_; | 314 const char* const name_; |
314 const int flags_; | 315 const int flags_; |
315 const int l10n_message_id_; | 316 const int l10n_message_id_; |
316 const PermissionMessage::ID message_id_; | 317 const PermissionMessage::ID message_id_; |
317 const APIPermissionConstructor api_permission_constructor_; | 318 const APIPermissionConstructor api_permission_constructor_; |
318 }; | 319 }; |
319 | 320 |
320 } // namespace extensions | 321 } // namespace extensions |
321 | 322 |
322 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 323 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |