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