| 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     kDeleted_InterceptAllKeys, | 
| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 428 | 428 | 
| 429   const APIPermission::ID id_; | 429   const APIPermission::ID id_; | 
| 430   const char* const name_; | 430   const char* const name_; | 
| 431   const int flags_; | 431   const int flags_; | 
| 432   const APIPermissionConstructor api_permission_constructor_; | 432   const APIPermissionConstructor api_permission_constructor_; | 
| 433 }; | 433 }; | 
| 434 | 434 | 
| 435 }  // namespace extensions | 435 }  // namespace extensions | 
| 436 | 436 | 
| 437 #endif  // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 437 #endif  // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 
| OLD | NEW | 
|---|