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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 kMediaGalleries, | 78 kMediaGalleries, |
79 kMediaGalleriesAllGalleries, | 79 kMediaGalleriesAllGalleries, |
80 kMediaGalleriesRead, | 80 kMediaGalleriesRead, |
81 kMediaPlayerPrivate, | 81 kMediaPlayerPrivate, |
82 kMetricsPrivate, | 82 kMetricsPrivate, |
83 kNotification, | 83 kNotification, |
84 kPageCapture, | 84 kPageCapture, |
85 kPlugin, | 85 kPlugin, |
86 kPrivacy, | 86 kPrivacy, |
87 kProxy, | 87 kProxy, |
| 88 kPushMessaging, |
88 kSerial, | 89 kSerial, |
89 kSocket, | 90 kSocket, |
90 kStorage, | 91 kStorage, |
91 kSystemPrivate, | 92 kSystemPrivate, |
92 kTab, | 93 kTab, |
93 kTerminalPrivate, | 94 kTerminalPrivate, |
94 kTopSites, | 95 kTopSites, |
95 kTts, | 96 kTts, |
96 kTtsEngine, | 97 kTtsEngine, |
97 kUnlimitedStorage, | 98 kUnlimitedStorage, |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 const char* const name_; | 245 const char* const name_; |
245 const int flags_; | 246 const int flags_; |
246 const int l10n_message_id_; | 247 const int l10n_message_id_; |
247 const PermissionMessage::ID message_id_; | 248 const PermissionMessage::ID message_id_; |
248 const APIPermissionConstructor api_permission_constructor_; | 249 const APIPermissionConstructor api_permission_constructor_; |
249 }; | 250 }; |
250 | 251 |
251 } // namespace extensions | 252 } // namespace extensions |
252 | 253 |
253 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 254 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |