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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 kPlugin, | 87 kPlugin, |
88 kPrivacy, | 88 kPrivacy, |
89 kProxy, | 89 kProxy, |
90 kPushMessaging, | 90 kPushMessaging, |
91 kRtcPrivate, | 91 kRtcPrivate, |
92 kSerial, | 92 kSerial, |
93 kSocket, | 93 kSocket, |
94 kStorage, | 94 kStorage, |
95 kSyncFileSystem, | 95 kSyncFileSystem, |
96 kSystemPrivate, | 96 kSystemPrivate, |
| 97 kSystemIndicator, |
97 kTab, | 98 kTab, |
98 kTabCapture, | 99 kTabCapture, |
99 kTerminalPrivate, | 100 kTerminalPrivate, |
100 kTopSites, | 101 kTopSites, |
101 kTts, | 102 kTts, |
102 kTtsEngine, | 103 kTtsEngine, |
103 kUnlimitedStorage, | 104 kUnlimitedStorage, |
104 kUsb, | 105 kUsb, |
105 kVideoCapture, | 106 kVideoCapture, |
106 kWallpaperPrivate, | 107 kWallpaperPrivate, |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 const char* const name_; | 267 const char* const name_; |
267 const int flags_; | 268 const int flags_; |
268 const int l10n_message_id_; | 269 const int l10n_message_id_; |
269 const PermissionMessage::ID message_id_; | 270 const PermissionMessage::ID message_id_; |
270 const APIPermissionConstructor api_permission_constructor_; | 271 const APIPermissionConstructor api_permission_constructor_; |
271 }; | 272 }; |
272 | 273 |
273 } // namespace extensions | 274 } // namespace extensions |
274 | 275 |
275 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 276 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |