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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 kPrivacy, | 85 kPrivacy, |
86 kProxy, | 86 kProxy, |
87 kPushMessaging, | 87 kPushMessaging, |
88 kRtcPrivate, | 88 kRtcPrivate, |
89 kSerial, | 89 kSerial, |
90 kSocket, | 90 kSocket, |
91 kStorage, | 91 kStorage, |
92 kSyncFileSystem, | 92 kSyncFileSystem, |
93 kSystemPrivate, | 93 kSystemPrivate, |
94 kTab, | 94 kTab, |
| 95 kTabCapture, |
95 kTerminalPrivate, | 96 kTerminalPrivate, |
96 kTopSites, | 97 kTopSites, |
97 kTts, | 98 kTts, |
98 kTtsEngine, | 99 kTtsEngine, |
99 kUnlimitedStorage, | 100 kUnlimitedStorage, |
100 kVideoCapture, | 101 kVideoCapture, |
101 kWallpaperPrivate, | 102 kWallpaperPrivate, |
102 kWebNavigation, | 103 kWebNavigation, |
103 kWebRequest, | 104 kWebRequest, |
104 kWebRequestBlocking, | 105 kWebRequestBlocking, |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 const char* const name_; | 261 const char* const name_; |
261 const int flags_; | 262 const int flags_; |
262 const int l10n_message_id_; | 263 const int l10n_message_id_; |
263 const PermissionMessage::ID message_id_; | 264 const PermissionMessage::ID message_id_; |
264 const APIPermissionConstructor api_permission_constructor_; | 265 const APIPermissionConstructor api_permission_constructor_; |
265 }; | 266 }; |
266 | 267 |
267 } // namespace extensions | 268 } // namespace extensions |
268 | 269 |
269 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 270 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |