Chromium Code Reviews| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 kCopresence, | 82 kCopresence, // Deleted |
|
xiyuan
2016/07/07 16:16:13
nit: kCopresence -> kDeletedCopresence so that it
Charlie
2016/07/07 20:06:17
Done.
| |
| 83 kCopresencePrivate, | 83 kCopresencePrivate, |
| 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, |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 433 | 433 |
| 434 const APIPermission::ID id_; | 434 const APIPermission::ID id_; |
| 435 const char* const name_; | 435 const char* const name_; |
| 436 const int flags_; | 436 const int flags_; |
| 437 const APIPermissionConstructor api_permission_constructor_; | 437 const APIPermissionConstructor api_permission_constructor_; |
| 438 }; | 438 }; |
| 439 | 439 |
| 440 } // namespace extensions | 440 } // namespace extensions |
| 441 | 441 |
| 442 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 442 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |