| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 kIdle, | 85 kIdle, |
| 86 kInput, | 86 kInput, |
| 87 kInputMethodPrivate, | 87 kInputMethodPrivate, |
| 88 kLocation, | 88 kLocation, |
| 89 kManagedModePrivate, | 89 kManagedModePrivate, |
| 90 kManagement, | 90 kManagement, |
| 91 kMediaGalleries, | 91 kMediaGalleries, |
| 92 kMediaGalleriesPrivate, | 92 kMediaGalleriesPrivate, |
| 93 kMediaPlayerPrivate, | 93 kMediaPlayerPrivate, |
| 94 kMetricsPrivate, | 94 kMetricsPrivate, |
| 95 kMusicManagerPrivate, |
| 95 kNativeMessaging, | 96 kNativeMessaging, |
| 96 kNetworkingPrivate, | 97 kNetworkingPrivate, |
| 97 kNotification, | 98 kNotification, |
| 98 kPageCapture, | 99 kPageCapture, |
| 99 kPointerLock, | 100 kPointerLock, |
| 100 kPlugin, | 101 kPlugin, |
| 101 kPower, | 102 kPower, |
| 102 kPrivacy, | 103 kPrivacy, |
| 103 kProxy, | 104 kProxy, |
| 104 kPushMessaging, | 105 kPushMessaging, |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 const char* const name_; | 288 const char* const name_; |
| 288 const int flags_; | 289 const int flags_; |
| 289 const int l10n_message_id_; | 290 const int l10n_message_id_; |
| 290 const PermissionMessage::ID message_id_; | 291 const PermissionMessage::ID message_id_; |
| 291 const APIPermissionConstructor api_permission_constructor_; | 292 const APIPermissionConstructor api_permission_constructor_; |
| 292 }; | 293 }; |
| 293 | 294 |
| 294 } // namespace extensions | 295 } // namespace extensions |
| 295 | 296 |
| 296 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 297 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |