| OLD | NEW |
| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 kFileSystemDirectory, |
| 83 kFileSystemProvider, |
| 83 kFileSystemRetainEntries, | 84 kFileSystemRetainEntries, |
| 84 kFileSystemWrite, | 85 kFileSystemWrite, |
| 85 kFileSystemWriteDirectory, | 86 kFileSystemWriteDirectory, |
| 86 kFontSettings, | 87 kFontSettings, |
| 87 kFullscreen, | 88 kFullscreen, |
| 88 kGeolocation, | 89 kGeolocation, |
| 89 kHistory, | 90 kHistory, |
| 90 kIdentity, | 91 kIdentity, |
| 91 kIdentityPrivate, | 92 kIdentityPrivate, |
| 92 kIdltest, | 93 kIdltest, |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 const char* const name_; | 322 const char* const name_; |
| 322 const int flags_; | 323 const int flags_; |
| 323 const int l10n_message_id_; | 324 const int l10n_message_id_; |
| 324 const PermissionMessage::ID message_id_; | 325 const PermissionMessage::ID message_id_; |
| 325 const APIPermissionConstructor api_permission_constructor_; | 326 const APIPermissionConstructor api_permission_constructor_; |
| 326 }; | 327 }; |
| 327 | 328 |
| 328 } // namespace extensions | 329 } // namespace extensions |
| 329 | 330 |
| 330 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 331 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |