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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 kGeolocation, | 106 kGeolocation, |
107 kHid, | 107 kHid, |
108 kHistory, | 108 kHistory, |
109 kHomepage, | 109 kHomepage, |
110 kHotwordPrivate, | 110 kHotwordPrivate, |
111 kIdentity, | 111 kIdentity, |
112 kIdentityEmail, | 112 kIdentityEmail, |
113 kIdentityPrivate, | 113 kIdentityPrivate, |
114 kIdltest, | 114 kIdltest, |
115 kIdle, | 115 kIdle, |
| 116 kImeWindowEnabled, |
116 kInfobars, | 117 kInfobars, |
117 kInput, | 118 kInput, |
118 kInputMethodPrivate, | 119 kInputMethodPrivate, |
119 kLocation, | 120 kLocation, |
120 kLogPrivate, | 121 kLogPrivate, |
121 kManagement, | 122 kManagement, |
122 kMediaGalleries, | 123 kMediaGalleries, |
123 kMediaGalleriesPrivate, | 124 kMediaGalleriesPrivate, |
124 kMediaPlayerPrivate, | 125 kMediaPlayerPrivate, |
125 kMetricsPrivate, | 126 kMetricsPrivate, |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 const char* const name_; | 366 const char* const name_; |
366 const int flags_; | 367 const int flags_; |
367 const int l10n_message_id_; | 368 const int l10n_message_id_; |
368 const PermissionMessage::ID message_id_; | 369 const PermissionMessage::ID message_id_; |
369 const APIPermissionConstructor api_permission_constructor_; | 370 const APIPermissionConstructor api_permission_constructor_; |
370 }; | 371 }; |
371 | 372 |
372 } // namespace extensions | 373 } // namespace extensions |
373 | 374 |
374 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 375 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |