| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 kTerminalPrivate, | 163 kTerminalPrivate, |
| 164 kTopSites, | 164 kTopSites, |
| 165 kTts, | 165 kTts, |
| 166 kTtsEngine, | 166 kTtsEngine, |
| 167 kUnlimitedStorage, | 167 kUnlimitedStorage, |
| 168 kU2fDevices, | 168 kU2fDevices, |
| 169 kUsb, | 169 kUsb, |
| 170 kUsbDevice, | 170 kUsbDevice, |
| 171 kVideoCapture, | 171 kVideoCapture, |
| 172 kVirtualKeyboardPrivate, | 172 kVirtualKeyboardPrivate, |
| 173 kVpnProvider, |
| 173 kWallpaper, | 174 kWallpaper, |
| 174 kWallpaperPrivate, | 175 kWallpaperPrivate, |
| 175 kWebcamPrivate, | 176 kWebcamPrivate, |
| 176 kWebConnectable, // for externally_connectable manifest key | 177 kWebConnectable, // for externally_connectable manifest key |
| 177 kWebNavigation, | 178 kWebNavigation, |
| 178 kWebRequest, | 179 kWebRequest, |
| 179 kWebRequestBlocking, | 180 kWebRequestBlocking, |
| 180 kWebrtcAudioPrivate, | 181 kWebrtcAudioPrivate, |
| 181 kWebrtcLoggingPrivate, | 182 kWebrtcLoggingPrivate, |
| 182 kWebstorePrivate, | 183 kWebstorePrivate, |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 const char* const name_; | 367 const char* const name_; |
| 367 const int flags_; | 368 const int flags_; |
| 368 const int l10n_message_id_; | 369 const int l10n_message_id_; |
| 369 const PermissionMessage::ID message_id_; | 370 const PermissionMessage::ID message_id_; |
| 370 const APIPermissionConstructor api_permission_constructor_; | 371 const APIPermissionConstructor api_permission_constructor_; |
| 371 }; | 372 }; |
| 372 | 373 |
| 373 } // namespace extensions | 374 } // namespace extensions |
| 374 | 375 |
| 375 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 376 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |