| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 kClipboardRead, | 69 kClipboardRead, |
| 70 kClipboardWrite, | 70 kClipboardWrite, |
| 71 kCloudPrintPrivate, | 71 kCloudPrintPrivate, |
| 72 kCommandLinePrivate, | 72 kCommandLinePrivate, |
| 73 kCommandsAccessibility, | 73 kCommandsAccessibility, |
| 74 kContentSettings, | 74 kContentSettings, |
| 75 kContextMenus, | 75 kContextMenus, |
| 76 kCookie, | 76 kCookie, |
| 77 kCopresence, | 77 kCopresence, |
| 78 kCopresencePrivate, | 78 kCopresencePrivate, |
| 79 kCryptotokenPrivate, |
| 79 kDiagnostics, | 80 kDiagnostics, |
| 80 kDial, | 81 kDial, |
| 81 kDebugger, | 82 kDebugger, |
| 82 kDeclarative, | 83 kDeclarative, |
| 83 kDeclarativeContent, | 84 kDeclarativeContent, |
| 84 kDeclarativeWebRequest, | 85 kDeclarativeWebRequest, |
| 85 kDesktopCapture, | 86 kDesktopCapture, |
| 86 kDeveloperPrivate, | 87 kDeveloperPrivate, |
| 87 kDevtools, | 88 kDevtools, |
| 88 kDns, | 89 kDns, |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 const char* const name_; | 438 const char* const name_; |
| 438 const int flags_; | 439 const int flags_; |
| 439 const int l10n_message_id_; | 440 const int l10n_message_id_; |
| 440 const PermissionMessage::ID message_id_; | 441 const PermissionMessage::ID message_id_; |
| 441 const APIPermissionConstructor api_permission_constructor_; | 442 const APIPermissionConstructor api_permission_constructor_; |
| 442 }; | 443 }; |
| 443 | 444 |
| 444 } // namespace extensions | 445 } // namespace extensions |
| 445 | 446 |
| 446 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 447 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |