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