| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 kHistory, | 98 kHistory, |
| 99 kHomepage, | 99 kHomepage, |
| 100 kHotwordPrivate, | 100 kHotwordPrivate, |
| 101 kIdentity, | 101 kIdentity, |
| 102 kIdentityPrivate, | 102 kIdentityPrivate, |
| 103 kIdltest, | 103 kIdltest, |
| 104 kIdle, | 104 kIdle, |
| 105 kInfobars, | 105 kInfobars, |
| 106 kInput, | 106 kInput, |
| 107 kInputMethodPrivate, | 107 kInputMethodPrivate, |
| 108 kLedger, |
| 108 kLocation, | 109 kLocation, |
| 109 kLogPrivate, | 110 kLogPrivate, |
| 110 kManagement, | 111 kManagement, |
| 111 kMediaGalleries, | 112 kMediaGalleries, |
| 112 kMediaGalleriesPrivate, | 113 kMediaGalleriesPrivate, |
| 113 kMediaPlayerPrivate, | 114 kMediaPlayerPrivate, |
| 114 kMetricsPrivate, | 115 kMetricsPrivate, |
| 115 kMDns, | 116 kMDns, |
| 116 kMusicManagerPrivate, | 117 kMusicManagerPrivate, |
| 117 kNativeMessaging, | 118 kNativeMessaging, |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 const char* const name_; | 352 const char* const name_; |
| 352 const int flags_; | 353 const int flags_; |
| 353 const int l10n_message_id_; | 354 const int l10n_message_id_; |
| 354 const PermissionMessage::ID message_id_; | 355 const PermissionMessage::ID message_id_; |
| 355 const APIPermissionConstructor api_permission_constructor_; | 356 const APIPermissionConstructor api_permission_constructor_; |
| 356 }; | 357 }; |
| 357 | 358 |
| 358 } // namespace extensions | 359 } // namespace extensions |
| 359 | 360 |
| 360 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 361 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |