Chromium Code Reviews| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 kHotwordPrivate, | 131 kHotwordPrivate, |
| 132 kIdentity, | 132 kIdentity, |
| 133 kIdentityEmail, | 133 kIdentityEmail, |
| 134 kIdentityPrivate, | 134 kIdentityPrivate, |
| 135 kIdltest, | 135 kIdltest, |
| 136 kIdle, | 136 kIdle, |
| 137 kImeWindowEnabled, | 137 kImeWindowEnabled, |
| 138 kInlineInstallPrivate, | 138 kInlineInstallPrivate, |
| 139 kInput, | 139 kInput, |
| 140 kInputMethodPrivate, | 140 kInputMethodPrivate, |
| 141 kInterceptAllKeys, | 141 kInterceptAllKeys_unused, |
|
Marc Treib
2015/09/04 07:28:35
nit: The common pattern would be
kDeleted_Intercep
Sriram
2015/09/04 20:20:08
Done.
| |
| 142 kLauncherSearchProvider, | 142 kLauncherSearchProvider, |
| 143 kLocation, | 143 kLocation, |
| 144 kLogPrivate, | 144 kLogPrivate, |
| 145 kManagement, | 145 kManagement, |
| 146 kMediaGalleries, | 146 kMediaGalleries, |
| 147 kMediaPlayerPrivate, | 147 kMediaPlayerPrivate, |
| 148 kMediaRouterPrivate, | 148 kMediaRouterPrivate, |
| 149 kMetricsPrivate, | 149 kMetricsPrivate, |
| 150 kMDns, | 150 kMDns, |
| 151 kMusicManagerPrivate, | 151 kMusicManagerPrivate, |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 427 | 427 |
| 428 const APIPermission::ID id_; | 428 const APIPermission::ID id_; |
| 429 const char* const name_; | 429 const char* const name_; |
| 430 const int flags_; | 430 const int flags_; |
| 431 const APIPermissionConstructor api_permission_constructor_; | 431 const APIPermissionConstructor api_permission_constructor_; |
| 432 }; | 432 }; |
| 433 | 433 |
| 434 } // namespace extensions | 434 } // namespace extensions |
| 435 | 435 |
| 436 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 436 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |