| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 kPreferencesPrivate, | 114 kPreferencesPrivate, |
| 115 kPrivacy, | 115 kPrivacy, |
| 116 kProcesses, | 116 kProcesses, |
| 117 kProxy, | 117 kProxy, |
| 118 kPushMessaging, | 118 kPushMessaging, |
| 119 kRecoveryPrivate, | 119 kRecoveryPrivate, |
| 120 kRtcPrivate, | 120 kRtcPrivate, |
| 121 kScreensaver, | 121 kScreensaver, |
| 122 kSerial, | 122 kSerial, |
| 123 kSessions, | 123 kSessions, |
| 124 kSignedInDevices, | |
| 125 kSocket, | 124 kSocket, |
| 126 kSocketsUdp, | 125 kSocketsUdp, |
| 127 kStorage, | 126 kStorage, |
| 128 kStreamsPrivate, | 127 kStreamsPrivate, |
| 129 kSyncFileSystem, | 128 kSyncFileSystem, |
| 130 kSystemPrivate, | 129 kSystemPrivate, |
| 131 kSystemIndicator, | 130 kSystemIndicator, |
| 132 kSystemDisplay, | 131 kSystemDisplay, |
| 133 kSystemStorage, | 132 kSystemStorage, |
| 134 kTab, | 133 kTab, |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 const char* const name_; | 319 const char* const name_; |
| 321 const int flags_; | 320 const int flags_; |
| 322 const int l10n_message_id_; | 321 const int l10n_message_id_; |
| 323 const PermissionMessage::ID message_id_; | 322 const PermissionMessage::ID message_id_; |
| 324 const APIPermissionConstructor api_permission_constructor_; | 323 const APIPermissionConstructor api_permission_constructor_; |
| 325 }; | 324 }; |
| 326 | 325 |
| 327 } // namespace extensions | 326 } // namespace extensions |
| 328 | 327 |
| 329 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 328 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |