| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 kDesktopCapture, | 72 kDesktopCapture, |
| 73 kDeveloperPrivate, | 73 kDeveloperPrivate, |
| 74 kDevtools, | 74 kDevtools, |
| 75 kDns, | 75 kDns, |
| 76 kDownloads, | 76 kDownloads, |
| 77 kDownloadsInternal, | 77 kDownloadsInternal, |
| 78 kDownloadsOpen, | 78 kDownloadsOpen, |
| 79 kDownloadsShelf, | 79 kDownloadsShelf, |
| 80 kEasyUnlockPrivate, | 80 kEasyUnlockPrivate, |
| 81 kEchoPrivate, | 81 kEchoPrivate, |
| 82 kEmbeddedExtensionOptions, |
| 82 kEnterprisePlatformKeys, | 83 kEnterprisePlatformKeys, |
| 83 kEnterprisePlatformKeysPrivate, | 84 kEnterprisePlatformKeysPrivate, |
| 84 kExperimental, | 85 kExperimental, |
| 85 kFeedbackPrivate, | 86 kFeedbackPrivate, |
| 86 kFileBrowserHandler, | 87 kFileBrowserHandler, |
| 87 kFileBrowserHandlerInternal, | 88 kFileBrowserHandlerInternal, |
| 88 kFileBrowserPrivate, | 89 kFileBrowserPrivate, |
| 89 kFileSystem, | 90 kFileSystem, |
| 90 kFileSystemDirectory, | 91 kFileSystemDirectory, |
| 91 kFileSystemProvider, | 92 kFileSystemProvider, |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 const char* const name_; | 358 const char* const name_; |
| 358 const int flags_; | 359 const int flags_; |
| 359 const int l10n_message_id_; | 360 const int l10n_message_id_; |
| 360 const PermissionMessage::ID message_id_; | 361 const PermissionMessage::ID message_id_; |
| 361 const APIPermissionConstructor api_permission_constructor_; | 362 const APIPermissionConstructor api_permission_constructor_; |
| 362 }; | 363 }; |
| 363 | 364 |
| 364 } // namespace extensions | 365 } // namespace extensions |
| 365 | 366 |
| 366 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 367 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |