| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 kMusicManagerPrivate, | 101 kMusicManagerPrivate, |
| 102 kNativeMessaging, | 102 kNativeMessaging, |
| 103 kNetworkingPrivate, | 103 kNetworkingPrivate, |
| 104 kNotification, | 104 kNotification, |
| 105 kPageCapture, | 105 kPageCapture, |
| 106 kPointerLock, | 106 kPointerLock, |
| 107 kPlugin, | 107 kPlugin, |
| 108 kPower, | 108 kPower, |
| 109 kPreferencesPrivate, | 109 kPreferencesPrivate, |
| 110 kPrivacy, | 110 kPrivacy, |
| 111 kProcesses, |
| 111 kProxy, | 112 kProxy, |
| 112 kPushMessaging, | 113 kPushMessaging, |
| 113 kRecoveryPrivate, | 114 kRecoveryPrivate, |
| 114 kRtcPrivate, | 115 kRtcPrivate, |
| 115 kScreensaver, | 116 kScreensaver, |
| 116 kSerial, | 117 kSerial, |
| 117 kSessionRestore, | 118 kSessionRestore, |
| 118 kSocket, | 119 kSocket, |
| 119 kStorage, | 120 kStorage, |
| 120 kStreamsPrivate, | 121 kStreamsPrivate, |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 const char* const name_; | 312 const char* const name_; |
| 312 const int flags_; | 313 const int flags_; |
| 313 const int l10n_message_id_; | 314 const int l10n_message_id_; |
| 314 const PermissionMessage::ID message_id_; | 315 const PermissionMessage::ID message_id_; |
| 315 const APIPermissionConstructor api_permission_constructor_; | 316 const APIPermissionConstructor api_permission_constructor_; |
| 316 }; | 317 }; |
| 317 | 318 |
| 318 } // namespace extensions | 319 } // namespace extensions |
| 319 | 320 |
| 320 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 321 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |