| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 kDeclarativeWebRequest, | 71 kDeclarativeWebRequest, |
| 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 kEchoPrivate, | 80 kEchoPrivate, |
| 81 kEnterprisePlatformKeys, |
| 81 kEnterprisePlatformKeysPrivate, | 82 kEnterprisePlatformKeysPrivate, |
| 82 kExperimental, | 83 kExperimental, |
| 83 kFeedbackPrivate, | 84 kFeedbackPrivate, |
| 84 kFileBrowserHandler, | 85 kFileBrowserHandler, |
| 85 kFileBrowserHandlerInternal, | 86 kFileBrowserHandlerInternal, |
| 86 kFileBrowserPrivate, | 87 kFileBrowserPrivate, |
| 87 kFileSystem, | 88 kFileSystem, |
| 88 kFileSystemDirectory, | 89 kFileSystemDirectory, |
| 89 kFileSystemProvider, | 90 kFileSystemProvider, |
| 90 kFileSystemRetainEntries, | 91 kFileSystemRetainEntries, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 const char* const name_; | 352 const char* const name_; |
| 352 const int flags_; | 353 const int flags_; |
| 353 const int l10n_message_id_; | 354 const int l10n_message_id_; |
| 354 const PermissionMessage::ID message_id_; | 355 const PermissionMessage::ID message_id_; |
| 355 const APIPermissionConstructor api_permission_constructor_; | 356 const APIPermissionConstructor api_permission_constructor_; |
| 356 }; | 357 }; |
| 357 | 358 |
| 358 } // namespace extensions | 359 } // namespace extensions |
| 359 | 360 |
| 360 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 361 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |