| 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 29 matching lines...) Expand all Loading... |
| 40 kAdView, | 40 kAdView, |
| 41 kAlarms, | 41 kAlarms, |
| 42 kAlwaysOnTopWindows, | 42 kAlwaysOnTopWindows, |
| 43 kAppCurrentWindowInternal, | 43 kAppCurrentWindowInternal, |
| 44 kAppRuntime, | 44 kAppRuntime, |
| 45 kAppWindow, | 45 kAppWindow, |
| 46 kAudio, | 46 kAudio, |
| 47 kAudioCapture, | 47 kAudioCapture, |
| 48 kAutoTestPrivate, | 48 kAutoTestPrivate, |
| 49 kBackground, | 49 kBackground, |
| 50 kBluetooth, | |
| 51 kBookmark, | 50 kBookmark, |
| 52 kBookmarkManagerPrivate, | 51 kBookmarkManagerPrivate, |
| 53 kBrailleDisplayPrivate, | 52 kBrailleDisplayPrivate, |
| 54 kBrowsingData, | 53 kBrowsingData, |
| 55 kCast, | 54 kCast, |
| 56 kCastStreaming, | 55 kCastStreaming, |
| 57 kChromeosInfoPrivate, | 56 kChromeosInfoPrivate, |
| 58 kClipboardRead, | 57 kClipboardRead, |
| 59 kClipboardWrite, | 58 kClipboardWrite, |
| 60 kCloudPrintPrivate, | 59 kCloudPrintPrivate, |
| (...skipping 272 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 |