| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 kPrivacy, | 88 kPrivacy, |
| 89 kProxy, | 89 kProxy, |
| 90 kPushMessaging, | 90 kPushMessaging, |
| 91 kRtcPrivate, | 91 kRtcPrivate, |
| 92 kSerial, | 92 kSerial, |
| 93 kSocket, | 93 kSocket, |
| 94 kStorage, | 94 kStorage, |
| 95 kSyncFileSystem, | 95 kSyncFileSystem, |
| 96 kSystemPrivate, | 96 kSystemPrivate, |
| 97 kTab, | 97 kTab, |
| 98 kTabCapture, |
| 98 kTerminalPrivate, | 99 kTerminalPrivate, |
| 99 kTopSites, | 100 kTopSites, |
| 100 kTts, | 101 kTts, |
| 101 kTtsEngine, | 102 kTtsEngine, |
| 102 kUnlimitedStorage, | 103 kUnlimitedStorage, |
| 103 kVideoCapture, | 104 kVideoCapture, |
| 104 kWallpaperPrivate, | 105 kWallpaperPrivate, |
| 105 kWebNavigation, | 106 kWebNavigation, |
| 106 kWebRequest, | 107 kWebRequest, |
| 107 kWebRequestBlocking, | 108 kWebRequestBlocking, |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 const char* const name_; | 265 const char* const name_; |
| 265 const int flags_; | 266 const int flags_; |
| 266 const int l10n_message_id_; | 267 const int l10n_message_id_; |
| 267 const PermissionMessage::ID message_id_; | 268 const PermissionMessage::ID message_id_; |
| 268 const APIPermissionConstructor api_permission_constructor_; | 269 const APIPermissionConstructor api_permission_constructor_; |
| 269 }; | 270 }; |
| 270 | 271 |
| 271 } // namespace extensions | 272 } // namespace extensions |
| 272 | 273 |
| 273 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 274 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
| OLD | NEW |