| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 kClipboardRead, | 68 kClipboardRead, |
| 69 kClipboardWrite, | 69 kClipboardWrite, |
| 70 kCloudPrintPrivate, | 70 kCloudPrintPrivate, |
| 71 kCommandLinePrivate, | 71 kCommandLinePrivate, |
| 72 kCommandsAccessibility, | 72 kCommandsAccessibility, |
| 73 kContentSettings, | 73 kContentSettings, |
| 74 kContextMenus, | 74 kContextMenus, |
| 75 kCookie, | 75 kCookie, |
| 76 kCopresence, | 76 kCopresence, |
| 77 kCopresencePrivate, | 77 kCopresencePrivate, |
| 78 kCryptotokenPrivate, |
| 78 kDiagnostics, | 79 kDiagnostics, |
| 79 kDial, | 80 kDial, |
| 80 kDebugger, | 81 kDebugger, |
| 81 kDeclarative, | 82 kDeclarative, |
| 82 kDeclarativeContent, | 83 kDeclarativeContent, |
| 83 kDeclarativeWebRequest, | 84 kDeclarativeWebRequest, |
| 84 kDesktopCapture, | 85 kDesktopCapture, |
| 85 kDeveloperPrivate, | 86 kDeveloperPrivate, |
| 86 kDevtools, | 87 kDevtools, |
| 87 kDns, | 88 kDns, |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 const char* const name_; | 409 const char* const name_; |
| 409 const int flags_; | 410 const int flags_; |
| 410 const int l10n_message_id_; | 411 const int l10n_message_id_; |
| 411 const PermissionMessage::ID message_id_; | 412 const PermissionMessage::ID message_id_; |
| 412 const APIPermissionConstructor api_permission_constructor_; | 413 const APIPermissionConstructor api_permission_constructor_; |
| 413 }; | 414 }; |
| 414 | 415 |
| 415 } // namespace extensions | 416 } // namespace extensions |
| 416 | 417 |
| 417 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 418 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |