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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 kSocketsUdp, | 127 kSocketsUdp, |
128 kStorage, | 128 kStorage, |
129 kStreamsPrivate, | 129 kStreamsPrivate, |
130 kSyncFileSystem, | 130 kSyncFileSystem, |
131 kSystemPrivate, | 131 kSystemPrivate, |
132 kSystemIndicator, | 132 kSystemIndicator, |
133 kSystemDisplay, | 133 kSystemDisplay, |
134 kSystemStorage, | 134 kSystemStorage, |
135 kTab, | 135 kTab, |
136 kTabCapture, | 136 kTabCapture, |
| 137 kTabCaptureForTab, |
137 kTerminalPrivate, | 138 kTerminalPrivate, |
138 kTopSites, | 139 kTopSites, |
139 kTts, | 140 kTts, |
140 kTtsEngine, | 141 kTtsEngine, |
141 kUnlimitedStorage, | 142 kUnlimitedStorage, |
142 kUsb, | 143 kUsb, |
143 kUsbDevice, | 144 kUsbDevice, |
144 kVideoCapture, | 145 kVideoCapture, |
145 kVirtualKeyboardPrivate, | 146 kVirtualKeyboardPrivate, |
146 kWallpaperPrivate, | 147 kWallpaperPrivate, |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 const char* const name_; | 322 const char* const name_; |
322 const int flags_; | 323 const int flags_; |
323 const int l10n_message_id_; | 324 const int l10n_message_id_; |
324 const PermissionMessage::ID message_id_; | 325 const PermissionMessage::ID message_id_; |
325 const APIPermissionConstructor api_permission_constructor_; | 326 const APIPermissionConstructor api_permission_constructor_; |
326 }; | 327 }; |
327 | 328 |
328 } // namespace extensions | 329 } // namespace extensions |
329 | 330 |
330 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 331 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |