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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 kPreferencesPrivate, | 110 kPreferencesPrivate, |
111 kPrivacy, | 111 kPrivacy, |
112 kProcesses, | 112 kProcesses, |
113 kProxy, | 113 kProxy, |
114 kPushMessaging, | 114 kPushMessaging, |
115 kRecoveryPrivate, | 115 kRecoveryPrivate, |
116 kRtcPrivate, | 116 kRtcPrivate, |
117 kScreensaver, | 117 kScreensaver, |
118 kSerial, | 118 kSerial, |
119 kSessions, | 119 kSessions, |
| 120 kSignedInDevices, |
120 kSocket, | 121 kSocket, |
121 kSocketsUdp, | 122 kSocketsUdp, |
122 kStorage, | 123 kStorage, |
123 kStreamsPrivate, | 124 kStreamsPrivate, |
124 kSyncFileSystem, | 125 kSyncFileSystem, |
125 kSystemPrivate, | 126 kSystemPrivate, |
126 kSystemIndicator, | 127 kSystemIndicator, |
127 kSystemDisplay, | 128 kSystemDisplay, |
128 kSystemStorage, | 129 kSystemStorage, |
129 kTab, | 130 kTab, |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 const char* const name_; | 316 const char* const name_; |
316 const int flags_; | 317 const int flags_; |
317 const int l10n_message_id_; | 318 const int l10n_message_id_; |
318 const PermissionMessage::ID message_id_; | 319 const PermissionMessage::ID message_id_; |
319 const APIPermissionConstructor api_permission_constructor_; | 320 const APIPermissionConstructor api_permission_constructor_; |
320 }; | 321 }; |
321 | 322 |
322 } // namespace extensions | 323 } // namespace extensions |
323 | 324 |
324 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 325 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |