OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 kDial, | 59 kDial, |
60 kDebugger, | 60 kDebugger, |
61 kDeclarative, | 61 kDeclarative, |
62 kDeclarativeContent, | 62 kDeclarativeContent, |
63 kDeclarativeWebRequest, | 63 kDeclarativeWebRequest, |
64 kDeveloperPrivate, | 64 kDeveloperPrivate, |
65 kDevtools, | 65 kDevtools, |
66 kDownloads, | 66 kDownloads, |
67 kDownloadsInternal, | 67 kDownloadsInternal, |
68 kEchoPrivate, | 68 kEchoPrivate, |
| 69 kEnterprisePlatformKeysPrivate, |
69 kExperimental, | 70 kExperimental, |
70 kFileBrowserHandler, | 71 kFileBrowserHandler, |
71 kFileBrowserHandlerInternal, | 72 kFileBrowserHandlerInternal, |
72 kFileBrowserPrivate, | 73 kFileBrowserPrivate, |
73 kFileSystem, | 74 kFileSystem, |
74 kFileSystemWrite, | 75 kFileSystemWrite, |
75 kFontSettings, | 76 kFontSettings, |
76 kFullscreen, | 77 kFullscreen, |
77 kGeolocation, | 78 kGeolocation, |
78 kHistory, | 79 kHistory, |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 const char* const name_; | 290 const char* const name_; |
290 const int flags_; | 291 const int flags_; |
291 const int l10n_message_id_; | 292 const int l10n_message_id_; |
292 const PermissionMessage::ID message_id_; | 293 const PermissionMessage::ID message_id_; |
293 const APIPermissionConstructor api_permission_constructor_; | 294 const APIPermissionConstructor api_permission_constructor_; |
294 }; | 295 }; |
295 | 296 |
296 } // namespace extensions | 297 } // namespace extensions |
297 | 298 |
298 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 299 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |