| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 kMetricsPrivate, | 151 kMetricsPrivate, |
| 152 kMDns, | 152 kMDns, |
| 153 kMusicManagerPrivate, | 153 kMusicManagerPrivate, |
| 154 kNativeMessaging, | 154 kNativeMessaging, |
| 155 kNetworkingConfig, | 155 kNetworkingConfig, |
| 156 kNetworkingPrivate, | 156 kNetworkingPrivate, |
| 157 kNotificationProvider, | 157 kNotificationProvider, |
| 158 kNotifications, | 158 kNotifications, |
| 159 kOverrideEscFullscreen, | 159 kOverrideEscFullscreen, |
| 160 kPageCapture, | 160 kPageCapture, |
| 161 kPasswordsPrivate, |
| 161 kPointerLock, | 162 kPointerLock, |
| 162 kPlatformKeys, | 163 kPlatformKeys, |
| 163 kPlugin, | 164 kPlugin, |
| 164 kPower, | 165 kPower, |
| 165 kPreferencesPrivate, | 166 kPreferencesPrivate, |
| 166 kPrincipalsPrivate, | 167 kPrincipalsPrivate, |
| 167 kPrinterProvider, | 168 kPrinterProvider, |
| 168 kPrivacy, | 169 kPrivacy, |
| 169 kProcesses, | 170 kProcesses, |
| 170 kProxy, | 171 kProxy, |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 const char* const name_; | 452 const char* const name_; |
| 452 const int flags_; | 453 const int flags_; |
| 453 const int l10n_message_id_; | 454 const int l10n_message_id_; |
| 454 const PermissionMessage::ID message_id_; | 455 const PermissionMessage::ID message_id_; |
| 455 const APIPermissionConstructor api_permission_constructor_; | 456 const APIPermissionConstructor api_permission_constructor_; |
| 456 }; | 457 }; |
| 457 | 458 |
| 458 } // namespace extensions | 459 } // namespace extensions |
| 459 | 460 |
| 460 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 461 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |