OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 6 #define EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 kNetworkingPrivate, | 154 kNetworkingPrivate, |
155 kNotificationProvider, | 155 kNotificationProvider, |
156 kNotifications, | 156 kNotifications, |
157 kOverrideEscFullscreen, | 157 kOverrideEscFullscreen, |
158 kPageCapture, | 158 kPageCapture, |
159 kPointerLock, | 159 kPointerLock, |
160 kPlatformKeys, | 160 kPlatformKeys, |
161 kPlugin, | 161 kPlugin, |
162 kPower, | 162 kPower, |
163 kPreferencesPrivate, | 163 kPreferencesPrivate, |
164 kPrincipalsPrivate, | 164 kDeleted_PrincipalsPrivate, |
165 kPrinterProvider, | 165 kPrinterProvider, |
166 kPrivacy, | 166 kPrivacy, |
167 kProcesses, | 167 kProcesses, |
168 kProxy, | 168 kProxy, |
169 kImageWriterPrivate, | 169 kImageWriterPrivate, |
170 kDeleted_ReadingListPrivate, | 170 kDeleted_ReadingListPrivate, |
171 kRtcPrivate, | 171 kRtcPrivate, |
172 kSearchProvider, | 172 kSearchProvider, |
173 kSearchEnginesPrivate, | 173 kSearchEnginesPrivate, |
174 kSerial, | 174 kSerial, |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 | 430 |
431 const APIPermission::ID id_; | 431 const APIPermission::ID id_; |
432 const char* const name_; | 432 const char* const name_; |
433 const int flags_; | 433 const int flags_; |
434 const APIPermissionConstructor api_permission_constructor_; | 434 const APIPermissionConstructor api_permission_constructor_; |
435 }; | 435 }; |
436 | 436 |
437 } // namespace extensions | 437 } // namespace extensions |
438 | 438 |
439 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 439 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |