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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 kManagedModePrivate, | 77 kManagedModePrivate, |
78 kManagement, | 78 kManagement, |
79 kMediaGalleries, | 79 kMediaGalleries, |
80 kMediaGalleriesRead, | 80 kMediaGalleriesRead, |
81 kMediaGalleriesAllAutoDetected, | 81 kMediaGalleriesAllAutoDetected, |
82 kMediaGalleriesPrivate, | 82 kMediaGalleriesPrivate, |
83 kMediaPlayerPrivate, | 83 kMediaPlayerPrivate, |
84 kMetricsPrivate, | 84 kMetricsPrivate, |
85 kNotification, | 85 kNotification, |
86 kPageCapture, | 86 kPageCapture, |
| 87 kPointerLock, |
87 kPlugin, | 88 kPlugin, |
88 kPrivacy, | 89 kPrivacy, |
89 kProxy, | 90 kProxy, |
90 kPushMessaging, | 91 kPushMessaging, |
91 kRtcPrivate, | 92 kRtcPrivate, |
92 kSerial, | 93 kSerial, |
93 kSocket, | 94 kSocket, |
94 kStorage, | 95 kStorage, |
95 kSyncFileSystem, | 96 kSyncFileSystem, |
96 kSystemPrivate, | 97 kSystemPrivate, |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 const char* const name_; | 268 const char* const name_; |
268 const int flags_; | 269 const int flags_; |
269 const int l10n_message_id_; | 270 const int l10n_message_id_; |
270 const PermissionMessage::ID message_id_; | 271 const PermissionMessage::ID message_id_; |
271 const APIPermissionConstructor api_permission_constructor_; | 272 const APIPermissionConstructor api_permission_constructor_; |
272 }; | 273 }; |
273 | 274 |
274 } // namespace extensions | 275 } // namespace extensions |
275 | 276 |
276 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 277 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |