| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, |
| 151 kNotificationProvider, | 151 kDeleted_NotificationProvider, |
| 152 kNotifications, | 152 kNotifications, |
| 153 kOverrideEscFullscreen, | 153 kOverrideEscFullscreen, |
| 154 kPageCapture, | 154 kPageCapture, |
| 155 kPointerLock, | 155 kPointerLock, |
| 156 kPlatformKeys, | 156 kPlatformKeys, |
| 157 kPlugin, | 157 kPlugin, |
| 158 kPower, | 158 kPower, |
| 159 kPreferencesPrivate, | 159 kPreferencesPrivate, |
| 160 kDeleted_PrincipalsPrivate, | 160 kDeleted_PrincipalsPrivate, |
| 161 kPrinterProvider, | 161 kPrinterProvider, |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 | 431 |
| 432 const APIPermission::ID id_; | 432 const APIPermission::ID id_; |
| 433 const char* const name_; | 433 const char* const name_; |
| 434 const int flags_; | 434 const int flags_; |
| 435 const APIPermissionConstructor api_permission_constructor_; | 435 const APIPermissionConstructor api_permission_constructor_; |
| 436 }; | 436 }; |
| 437 | 437 |
| 438 } // namespace extensions | 438 } // namespace extensions |
| 439 | 439 |
| 440 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 440 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |