| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 kFileSystemWriteDirectory, | 93 kFileSystemWriteDirectory, |
| 94 kFontSettings, | 94 kFontSettings, |
| 95 kFullscreen, | 95 kFullscreen, |
| 96 kGcm, | 96 kGcm, |
| 97 kGeolocation, | 97 kGeolocation, |
| 98 kHid, | 98 kHid, |
| 99 kHistory, | 99 kHistory, |
| 100 kHomepage, | 100 kHomepage, |
| 101 kHotwordPrivate, | 101 kHotwordPrivate, |
| 102 kIdentity, | 102 kIdentity, |
| 103 kIdentityEmail, |
| 103 kIdentityPrivate, | 104 kIdentityPrivate, |
| 104 kIdltest, | 105 kIdltest, |
| 105 kIdle, | 106 kIdle, |
| 106 kInfobars, | 107 kInfobars, |
| 107 kInput, | 108 kInput, |
| 108 kInputMethodPrivate, | 109 kInputMethodPrivate, |
| 109 kLedger, | 110 kLedger, |
| 110 kLocation, | 111 kLocation, |
| 111 kLogPrivate, | 112 kLogPrivate, |
| 112 kManagement, | 113 kManagement, |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 const char* const name_; | 355 const char* const name_; |
| 355 const int flags_; | 356 const int flags_; |
| 356 const int l10n_message_id_; | 357 const int l10n_message_id_; |
| 357 const PermissionMessage::ID message_id_; | 358 const PermissionMessage::ID message_id_; |
| 358 const APIPermissionConstructor api_permission_constructor_; | 359 const APIPermissionConstructor api_permission_constructor_; |
| 359 }; | 360 }; |
| 360 | 361 |
| 361 } // namespace extensions | 362 } // namespace extensions |
| 362 | 363 |
| 363 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 364 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |