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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 kDeclarative, | 64 kDeclarative, |
65 kDeclarativeContent, | 65 kDeclarativeContent, |
66 kDeclarativeWebRequest, | 66 kDeclarativeWebRequest, |
67 kDeveloperPrivate, | 67 kDeveloperPrivate, |
68 kDevtools, | 68 kDevtools, |
69 kDownloads, | 69 kDownloads, |
70 kDownloadsInternal, | 70 kDownloadsInternal, |
71 kEchoPrivate, | 71 kEchoPrivate, |
72 kEnterprisePlatformKeysPrivate, | 72 kEnterprisePlatformKeysPrivate, |
73 kExperimental, | 73 kExperimental, |
| 74 kExtfs, |
74 kFileBrowserHandler, | 75 kFileBrowserHandler, |
75 kFileBrowserHandlerInternal, | 76 kFileBrowserHandlerInternal, |
76 kFileBrowserPrivate, | 77 kFileBrowserPrivate, |
77 kFileSystem, | 78 kFileSystem, |
78 kFileSystemRetainFiles, | 79 kFileSystemRetainFiles, |
79 kFileSystemWrite, | 80 kFileSystemWrite, |
80 kFontSettings, | 81 kFontSettings, |
81 kFullscreen, | 82 kFullscreen, |
82 kGeolocation, | 83 kGeolocation, |
83 kHistory, | 84 kHistory, |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 const char* const name_; | 293 const char* const name_; |
293 const int flags_; | 294 const int flags_; |
294 const int l10n_message_id_; | 295 const int l10n_message_id_; |
295 const PermissionMessage::ID message_id_; | 296 const PermissionMessage::ID message_id_; |
296 const APIPermissionConstructor api_permission_constructor_; | 297 const APIPermissionConstructor api_permission_constructor_; |
297 }; | 298 }; |
298 | 299 |
299 } // namespace extensions | 300 } // namespace extensions |
300 | 301 |
301 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 302 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |