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 kEnterpriseCertificates, |
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 const char* const name_; | 344 const char* const name_; |
344 const int flags_; | 345 const int flags_; |
345 const int l10n_message_id_; | 346 const int l10n_message_id_; |
346 const PermissionMessage::ID message_id_; | 347 const PermissionMessage::ID message_id_; |
347 const APIPermissionConstructor api_permission_constructor_; | 348 const APIPermissionConstructor api_permission_constructor_; |
348 }; | 349 }; |
349 | 350 |
350 } // namespace extensions | 351 } // namespace extensions |
351 | 352 |
352 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ | 353 #endif // EXTENSIONS_COMMON_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |