| 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 <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 kAccessibilityFeaturesRead, | 50 kAccessibilityFeaturesRead, |
| 51 kAccessibilityPrivate, | 51 kAccessibilityPrivate, |
| 52 kActiveTab, | 52 kActiveTab, |
| 53 kActivityLogPrivate, | 53 kActivityLogPrivate, |
| 54 kAlarms, | 54 kAlarms, |
| 55 kAlphaEnabled, | 55 kAlphaEnabled, |
| 56 kAlwaysOnTopWindows, | 56 kAlwaysOnTopWindows, |
| 57 kAppView, | 57 kAppView, |
| 58 kAudio, | 58 kAudio, |
| 59 kAudioCapture, | 59 kAudioCapture, |
| 60 kAudioModem, | 60 kDeleted_AudioModem, |
| 61 kAutofillPrivate, | 61 kAutofillPrivate, |
| 62 kAutomation, | 62 kAutomation, |
| 63 kAutoTestPrivate, | 63 kAutoTestPrivate, |
| 64 kBackground, | 64 kBackground, |
| 65 kBluetoothPrivate, | 65 kBluetoothPrivate, |
| 66 kBookmark, | 66 kBookmark, |
| 67 kBookmarkManagerPrivate, | 67 kBookmarkManagerPrivate, |
| 68 kBrailleDisplayPrivate, | 68 kBrailleDisplayPrivate, |
| 69 kBrowser, | 69 kBrowser, |
| 70 kBrowsingData, | 70 kBrowsingData, |
| 71 kCast, | 71 kCast, |
| 72 kCastStreaming, | 72 kCastStreaming, |
| 73 kChromeosInfoPrivate, | 73 kChromeosInfoPrivate, |
| 74 kClipboardRead, | 74 kClipboardRead, |
| 75 kClipboardWrite, | 75 kClipboardWrite, |
| 76 kCloudPrintPrivate, | 76 kCloudPrintPrivate, |
| 77 kCommandLinePrivate, | 77 kCommandLinePrivate, |
| 78 kCommandsAccessibility, | 78 kCommandsAccessibility, |
| 79 kContentSettings, | 79 kContentSettings, |
| 80 kContextMenus, | 80 kContextMenus, |
| 81 kCookie, | 81 kCookie, |
| 82 kDeletedCopresence, | 82 kDeleted_Copresence, |
| 83 kCopresencePrivate, | 83 kDeleted_CopresencePrivate, |
| 84 kCryptotokenPrivate, | 84 kCryptotokenPrivate, |
| 85 kDataReductionProxy, | 85 kDataReductionProxy, |
| 86 kDiagnostics, | 86 kDiagnostics, |
| 87 kDial, | 87 kDial, |
| 88 kDebugger, | 88 kDebugger, |
| 89 kDeclarative, | 89 kDeclarative, |
| 90 kDeclarativeContent, | 90 kDeclarativeContent, |
| 91 kDeclarativeWebRequest, | 91 kDeclarativeWebRequest, |
| 92 kDesktopCapture, | 92 kDesktopCapture, |
| 93 kDesktopCapturePrivate, | 93 kDesktopCapturePrivate, |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 434 |
| 435 const APIPermission::ID id_; | 435 const APIPermission::ID id_; |
| 436 const char* const name_; | 436 const char* const name_; |
| 437 const int flags_; | 437 const int flags_; |
| 438 const APIPermissionConstructor api_permission_constructor_; | 438 const APIPermissionConstructor api_permission_constructor_; |
| 439 }; | 439 }; |
| 440 | 440 |
| 441 } // namespace extensions | 441 } // namespace extensions |
| 442 | 442 |
| 443 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 443 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |