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 <set> | 8 #include <set> |
9 | 9 |
10 #include "chrome/common/extensions/permissions/permission_message.h" | 10 #include "chrome/common/extensions/permissions/permission_message.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 kMediaGalleries, | 64 kMediaGalleries, |
65 kMediaGalleriesAllGalleries, | 65 kMediaGalleriesAllGalleries, |
66 kMediaGalleriesRead, | 66 kMediaGalleriesRead, |
67 kMediaPlayerPrivate, | 67 kMediaPlayerPrivate, |
68 kMetricsPrivate, | 68 kMetricsPrivate, |
69 kNotification, | 69 kNotification, |
70 kPageCapture, | 70 kPageCapture, |
71 kPlugin, | 71 kPlugin, |
72 kPrivacy, | 72 kPrivacy, |
73 kProxy, | 73 kProxy, |
| 74 kPushMessaging, |
74 kSerial, | 75 kSerial, |
75 kSocket, | 76 kSocket, |
76 kStorage, | 77 kStorage, |
77 kSystemPrivate, | 78 kSystemPrivate, |
78 kTab, | 79 kTab, |
79 kTerminalPrivate, | 80 kTerminalPrivate, |
80 kTopSites, | 81 kTopSites, |
81 kTts, | 82 kTts, |
82 kTtsEngine, | 83 kTtsEngine, |
83 kUnlimitedStorage, | 84 kUnlimitedStorage, |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 int flags_; | 161 int flags_; |
161 int l10n_message_id_; | 162 int l10n_message_id_; |
162 PermissionMessage::ID message_id_; | 163 PermissionMessage::ID message_id_; |
163 }; | 164 }; |
164 | 165 |
165 typedef std::set<APIPermission::ID> APIPermissionSet; | 166 typedef std::set<APIPermission::ID> APIPermissionSet; |
166 | 167 |
167 } // namespace extensions | 168 } // namespace extensions |
168 | 169 |
169 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ | 170 #endif // CHROME_COMMON_EXTENSIONS_PERMISSIONS_API_PERMISSION_H_ |
OLD | NEW |