| 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 <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 kIdentityPrivate, | 130 kIdentityPrivate, |
| 131 kIdltest, | 131 kIdltest, |
| 132 kIdle, | 132 kIdle, |
| 133 kImeWindowEnabled, | 133 kImeWindowEnabled, |
| 134 kInlineInstallPrivate, | 134 kInlineInstallPrivate, |
| 135 kInput, | 135 kInput, |
| 136 kInputMethodPrivate, | 136 kInputMethodPrivate, |
| 137 kDeleted_InterceptAllKeys, | 137 kDeleted_InterceptAllKeys, |
| 138 kLauncherSearchProvider, | 138 kLauncherSearchProvider, |
| 139 kLocation, | 139 kLocation, |
| 140 kLogPrivate, | 140 kDeleted_LogPrivate, |
| 141 kManagement, | 141 kManagement, |
| 142 kMediaGalleries, | 142 kMediaGalleries, |
| 143 kMediaPlayerPrivate, | 143 kMediaPlayerPrivate, |
| 144 kMediaRouterPrivate, | 144 kMediaRouterPrivate, |
| 145 kMetricsPrivate, | 145 kMetricsPrivate, |
| 146 kMDns, | 146 kMDns, |
| 147 kMusicManagerPrivate, | 147 kMusicManagerPrivate, |
| 148 kNativeMessaging, | 148 kNativeMessaging, |
| 149 kNetworkingConfig, | 149 kNetworkingConfig, |
| 150 kNetworkingPrivate, | 150 kNetworkingPrivate, |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 | 435 |
| 436 const APIPermission::ID id_; | 436 const APIPermission::ID id_; |
| 437 const char* const name_; | 437 const char* const name_; |
| 438 const int flags_; | 438 const int flags_; |
| 439 const APIPermissionConstructor api_permission_constructor_; | 439 const APIPermissionConstructor api_permission_constructor_; |
| 440 }; | 440 }; |
| 441 | 441 |
| 442 } // namespace extensions | 442 } // namespace extensions |
| 443 | 443 |
| 444 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 444 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |