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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 kFileBrowserPrivate, | 83 kFileBrowserPrivate, |
84 kFileSystem, | 84 kFileSystem, |
85 kFileSystemDirectory, | 85 kFileSystemDirectory, |
86 kFileSystemRetainEntries, | 86 kFileSystemRetainEntries, |
87 kFileSystemWrite, | 87 kFileSystemWrite, |
88 kFileSystemWriteDirectory, | 88 kFileSystemWriteDirectory, |
89 kFontSettings, | 89 kFontSettings, |
90 kFullscreen, | 90 kFullscreen, |
91 kGeolocation, | 91 kGeolocation, |
92 kHistory, | 92 kHistory, |
| 93 kHomePage, |
93 kIdentity, | 94 kIdentity, |
94 kIdentityPrivate, | 95 kIdentityPrivate, |
95 kIdltest, | 96 kIdltest, |
96 kIdle, | 97 kIdle, |
97 kInfobars, | 98 kInfobars, |
98 kInput, | 99 kInput, |
99 kInputMethodPrivate, | 100 kInputMethodPrivate, |
100 kLocation, | 101 kLocation, |
101 kLogPrivate, | 102 kLogPrivate, |
102 kManagement, | 103 kManagement, |
(...skipping 11 matching lines...) Expand all Loading... |
114 kPlugin, | 115 kPlugin, |
115 kPower, | 116 kPower, |
116 kPreferencesPrivate, | 117 kPreferencesPrivate, |
117 kPrincipalsPrivate, | 118 kPrincipalsPrivate, |
118 kPrivacy, | 119 kPrivacy, |
119 kProcesses, | 120 kProcesses, |
120 kProxy, | 121 kProxy, |
121 kPushMessaging, | 122 kPushMessaging, |
122 kImageWriterPrivate, | 123 kImageWriterPrivate, |
123 kRtcPrivate, | 124 kRtcPrivate, |
| 125 kSearchSettings, |
124 kSerial, | 126 kSerial, |
125 kSessions, | 127 kSessions, |
126 kSignedInDevices, | 128 kSignedInDevices, |
127 kSocket, | 129 kSocket, |
128 kSocketsUdp, | 130 kSocketsUdp, |
| 131 kStartupPages, |
129 kStorage, | 132 kStorage, |
130 kStreamsPrivate, | 133 kStreamsPrivate, |
131 kSyncFileSystem, | 134 kSyncFileSystem, |
132 kSystemPrivate, | 135 kSystemPrivate, |
133 kSystemIndicator, | 136 kSystemIndicator, |
134 kSystemDisplay, | 137 kSystemDisplay, |
135 kSystemStorage, | 138 kSystemStorage, |
136 kTab, | 139 kTab, |
137 kTabCapture, | 140 kTabCapture, |
138 kTabCaptureForTab, | 141 kTabCaptureForTab, |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 const char* const name_; | 327 const char* const name_; |
325 const int flags_; | 328 const int flags_; |
326 const int l10n_message_id_; | 329 const int l10n_message_id_; |
327 const PermissionMessage::ID message_id_; | 330 const PermissionMessage::ID message_id_; |
328 const APIPermissionConstructor api_permission_constructor_; | 331 const APIPermissionConstructor api_permission_constructor_; |
329 }; | 332 }; |
330 | 333 |
331 } // namespace extensions | 334 } // namespace extensions |
332 | 335 |
333 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 336 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |