| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 kPointerLock, | 102 kPointerLock, |
| 103 kPlugin, | 103 kPlugin, |
| 104 kPower, | 104 kPower, |
| 105 kPreferencesPrivate, | 105 kPreferencesPrivate, |
| 106 kPrivacy, | 106 kPrivacy, |
| 107 kProxy, | 107 kProxy, |
| 108 kPushMessaging, | 108 kPushMessaging, |
| 109 kRtcPrivate, | 109 kRtcPrivate, |
| 110 kScreensaver, | 110 kScreensaver, |
| 111 kSerial, | 111 kSerial, |
| 112 kSessionRestore, | 112 kSessions, |
| 113 kSocket, | 113 kSocket, |
| 114 kStorage, | 114 kStorage, |
| 115 kStreamsPrivate, | 115 kStreamsPrivate, |
| 116 kSyncFileSystem, | 116 kSyncFileSystem, |
| 117 kSystemPrivate, | 117 kSystemPrivate, |
| 118 kSystemIndicator, | 118 kSystemIndicator, |
| 119 kSystemDisplay, | 119 kSystemDisplay, |
| 120 kSystemStorage, | 120 kSystemStorage, |
| 121 kTab, | 121 kTab, |
| 122 kTabCapture, | 122 kTabCapture, |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 const char* const name_; | 305 const char* const name_; |
| 306 const int flags_; | 306 const int flags_; |
| 307 const int l10n_message_id_; | 307 const int l10n_message_id_; |
| 308 const PermissionMessage::ID message_id_; | 308 const PermissionMessage::ID message_id_; |
| 309 const APIPermissionConstructor api_permission_constructor_; | 309 const APIPermissionConstructor api_permission_constructor_; |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 } // namespace extensions | 312 } // namespace extensions |
| 313 | 313 |
| 314 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 314 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |