| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 kAutoTestPrivate, | 65 kAutoTestPrivate, |
| 66 kBackground, | 66 kBackground, |
| 67 kBluetoothPrivate, | 67 kBluetoothPrivate, |
| 68 kBookmark, | 68 kBookmark, |
| 69 kBookmarkManagerPrivate, | 69 kBookmarkManagerPrivate, |
| 70 kBrailleDisplayPrivate, | 70 kBrailleDisplayPrivate, |
| 71 kBrowser, | 71 kBrowser, |
| 72 kBrowsingData, | 72 kBrowsingData, |
| 73 kCast, | 73 kCast, |
| 74 kCastStreaming, | 74 kCastStreaming, |
| 75 kCertificateProvider, |
| 75 kChromeosInfoPrivate, | 76 kChromeosInfoPrivate, |
| 76 kClipboardRead, | 77 kClipboardRead, |
| 77 kClipboardWrite, | 78 kClipboardWrite, |
| 78 kCloudPrintPrivate, | 79 kCloudPrintPrivate, |
| 79 kCommandLinePrivate, | 80 kCommandLinePrivate, |
| 80 kCommandsAccessibility, | 81 kCommandsAccessibility, |
| 81 kContentSettings, | 82 kContentSettings, |
| 82 kContextMenus, | 83 kContextMenus, |
| 83 kCookie, | 84 kCookie, |
| 84 kCopresence, | 85 kCopresence, |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 const char* const name_; | 454 const char* const name_; |
| 454 const int flags_; | 455 const int flags_; |
| 455 const int l10n_message_id_; | 456 const int l10n_message_id_; |
| 456 const PermissionMessage::ID message_id_; | 457 const PermissionMessage::ID message_id_; |
| 457 const APIPermissionConstructor api_permission_constructor_; | 458 const APIPermissionConstructor api_permission_constructor_; |
| 458 }; | 459 }; |
| 459 | 460 |
| 460 } // namespace extensions | 461 } // namespace extensions |
| 461 | 462 |
| 462 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 463 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |