| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 kPower, | 108 kPower, |
| 109 kPreferencesPrivate, | 109 kPreferencesPrivate, |
| 110 kPrivacy, | 110 kPrivacy, |
| 111 kProcesses, | 111 kProcesses, |
| 112 kProxy, | 112 kProxy, |
| 113 kPushMessaging, | 113 kPushMessaging, |
| 114 kRecoveryPrivate, | 114 kRecoveryPrivate, |
| 115 kRtcPrivate, | 115 kRtcPrivate, |
| 116 kScreensaver, | 116 kScreensaver, |
| 117 kSerial, | 117 kSerial, |
| 118 kSessionRestore, | 118 kSessions, |
| 119 kSocket, | 119 kSocket, |
| 120 kSocketsUdp, | 120 kSocketsUdp, |
| 121 kStorage, | 121 kStorage, |
| 122 kStreamsPrivate, | 122 kStreamsPrivate, |
| 123 kSyncFileSystem, | 123 kSyncFileSystem, |
| 124 kSystemPrivate, | 124 kSystemPrivate, |
| 125 kSystemIndicator, | 125 kSystemIndicator, |
| 126 kSystemDisplay, | 126 kSystemDisplay, |
| 127 kSystemStorage, | 127 kSystemStorage, |
| 128 kTab, | 128 kTab, |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 const char* const name_; | 313 const char* const name_; |
| 314 const int flags_; | 314 const int flags_; |
| 315 const int l10n_message_id_; | 315 const int l10n_message_id_; |
| 316 const PermissionMessage::ID message_id_; | 316 const PermissionMessage::ID message_id_; |
| 317 const APIPermissionConstructor api_permission_constructor_; | 317 const APIPermissionConstructor api_permission_constructor_; |
| 318 }; | 318 }; |
| 319 | 319 |
| 320 } // namespace extensions | 320 } // namespace extensions |
| 321 | 321 |
| 322 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 322 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |