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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 kEnterprisePlatformKeysPrivate, | 75 kEnterprisePlatformKeysPrivate, |
76 kExperimental, | 76 kExperimental, |
77 kFeedbackPrivate, | 77 kFeedbackPrivate, |
78 kFileBrowserHandler, | 78 kFileBrowserHandler, |
79 kFileBrowserHandlerInternal, | 79 kFileBrowserHandlerInternal, |
80 kFileBrowserPrivate, | 80 kFileBrowserPrivate, |
81 kFileSystem, | 81 kFileSystem, |
82 kFileSystemDirectory, | 82 kFileSystemDirectory, |
83 kFileSystemRetainEntries, | 83 kFileSystemRetainEntries, |
84 kFileSystemWrite, | 84 kFileSystemWrite, |
85 kFileSystemWriteDirectory, | |
not at google - send to devlin
2013/09/03 17:07:04
(you do need this)
| |
85 kFontSettings, | 86 kFontSettings, |
86 kFullscreen, | 87 kFullscreen, |
87 kGeolocation, | 88 kGeolocation, |
88 kHistory, | 89 kHistory, |
89 kIdentity, | 90 kIdentity, |
90 kIdentityPrivate, | 91 kIdentityPrivate, |
91 kIdle, | 92 kIdle, |
92 kInfobars, | 93 kInfobars, |
93 kInput, | 94 kInput, |
94 kInputMethodPrivate, | 95 kInputMethodPrivate, |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
314 const char* const name_; | 315 const char* const name_; |
315 const int flags_; | 316 const int flags_; |
316 const int l10n_message_id_; | 317 const int l10n_message_id_; |
317 const PermissionMessage::ID message_id_; | 318 const PermissionMessage::ID message_id_; |
318 const APIPermissionConstructor api_permission_constructor_; | 319 const APIPermissionConstructor api_permission_constructor_; |
319 }; | 320 }; |
320 | 321 |
321 } // namespace extensions | 322 } // namespace extensions |
322 | 323 |
323 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 324 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |