| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 kFileBrowserPrivate, | 80 kFileBrowserPrivate, |
| 81 kFileSystem, | 81 kFileSystem, |
| 82 kFileSystemRetainEntries, | 82 kFileSystemRetainEntries, |
| 83 kFileSystemWrite, | 83 kFileSystemWrite, |
| 84 kFontSettings, | 84 kFontSettings, |
| 85 kFullscreen, | 85 kFullscreen, |
| 86 kGeolocation, | 86 kGeolocation, |
| 87 kHistory, | 87 kHistory, |
| 88 kIdentity, | 88 kIdentity, |
| 89 kIdentityPrivate, | 89 kIdentityPrivate, |
| 90 kIdltest, |
| 90 kIdle, | 91 kIdle, |
| 91 kInfobars, | 92 kInfobars, |
| 92 kInput, | 93 kInput, |
| 93 kInputMethodPrivate, | 94 kInputMethodPrivate, |
| 94 kLocation, | 95 kLocation, |
| 95 kLogPrivate, | 96 kLogPrivate, |
| 96 kManagement, | 97 kManagement, |
| 97 kMediaGalleries, | 98 kMediaGalleries, |
| 98 kMediaGalleriesPrivate, | 99 kMediaGalleriesPrivate, |
| 99 kMediaPlayerPrivate, | 100 kMediaPlayerPrivate, |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 const char* const name_; | 314 const char* const name_; |
| 314 const int flags_; | 315 const int flags_; |
| 315 const int l10n_message_id_; | 316 const int l10n_message_id_; |
| 316 const PermissionMessage::ID message_id_; | 317 const PermissionMessage::ID message_id_; |
| 317 const APIPermissionConstructor api_permission_constructor_; | 318 const APIPermissionConstructor api_permission_constructor_; |
| 318 }; | 319 }; |
| 319 | 320 |
| 320 } // namespace extensions | 321 } // namespace extensions |
| 321 | 322 |
| 322 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 323 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |