| 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 26 matching lines...) Expand all Loading... |
| 37 // Real permissions. | 37 // Real permissions. |
| 38 kActiveTab, | 38 kActiveTab, |
| 39 kActivityLogPrivate, | 39 kActivityLogPrivate, |
| 40 kAdView, | 40 kAdView, |
| 41 kAlarms, | 41 kAlarms, |
| 42 kAlwaysOnTopWindows, | 42 kAlwaysOnTopWindows, |
| 43 kAudio, | 43 kAudio, |
| 44 kAudioCapture, | 44 kAudioCapture, |
| 45 kAutoTestPrivate, | 45 kAutoTestPrivate, |
| 46 kBackground, | 46 kBackground, |
| 47 kBluetooth, | |
| 48 kBookmark, | 47 kBookmark, |
| 49 kBookmarkManagerPrivate, | 48 kBookmarkManagerPrivate, |
| 50 kBrailleDisplayPrivate, | 49 kBrailleDisplayPrivate, |
| 51 kBrowsingData, | 50 kBrowsingData, |
| 52 kCast, | 51 kCast, |
| 53 kCastStreaming, | 52 kCastStreaming, |
| 54 kChromeosInfoPrivate, | 53 kChromeosInfoPrivate, |
| 55 kClipboardRead, | 54 kClipboardRead, |
| 56 kClipboardWrite, | 55 kClipboardWrite, |
| 57 kCloudPrintPrivate, | 56 kCloudPrintPrivate, |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 const char* const name_; | 332 const char* const name_; |
| 334 const int flags_; | 333 const int flags_; |
| 335 const int l10n_message_id_; | 334 const int l10n_message_id_; |
| 336 const PermissionMessage::ID message_id_; | 335 const PermissionMessage::ID message_id_; |
| 337 const APIPermissionConstructor api_permission_constructor_; | 336 const APIPermissionConstructor api_permission_constructor_; |
| 338 }; | 337 }; |
| 339 | 338 |
| 340 } // namespace extensions | 339 } // namespace extensions |
| 341 | 340 |
| 342 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 341 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |