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 <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 kStartupPages, | 175 kStartupPages, |
176 kStorage, | 176 kStorage, |
177 kStreamsPrivate, | 177 kStreamsPrivate, |
178 kSyncFileSystem, | 178 kSyncFileSystem, |
179 kSystemPrivate, | 179 kSystemPrivate, |
180 kSystemDisplay, | 180 kSystemDisplay, |
181 kSystemStorage, | 181 kSystemStorage, |
182 kTab, | 182 kTab, |
183 kTabCapture, | 183 kTabCapture, |
184 kTabCaptureForTab, | 184 kTabCaptureForTab, |
| 185 kTabGlobal, |
185 kTerminalPrivate, | 186 kTerminalPrivate, |
186 kTopSites, | 187 kTopSites, |
187 kTts, | 188 kTts, |
188 kTtsEngine, | 189 kTtsEngine, |
189 kUnlimitedStorage, | 190 kUnlimitedStorage, |
190 kU2fDevices, | 191 kU2fDevices, |
191 kUsb, | 192 kUsb, |
192 kUsbDevice, | 193 kUsbDevice, |
193 kVideoCapture, | 194 kVideoCapture, |
194 kVirtualKeyboardPrivate, | 195 kVirtualKeyboardPrivate, |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 const char* const name_; | 447 const char* const name_; |
447 const int flags_; | 448 const int flags_; |
448 const int l10n_message_id_; | 449 const int l10n_message_id_; |
449 const PermissionMessage::ID message_id_; | 450 const PermissionMessage::ID message_id_; |
450 const APIPermissionConstructor api_permission_constructor_; | 451 const APIPermissionConstructor api_permission_constructor_; |
451 }; | 452 }; |
452 | 453 |
453 } // namespace extensions | 454 } // namespace extensions |
454 | 455 |
455 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 456 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |