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_EXTENSION_PERMISSION_SET_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 kDevtools, | 110 kDevtools, |
111 kExperimental, | 111 kExperimental, |
112 kFileBrowserHandler, | 112 kFileBrowserHandler, |
113 kFileBrowserPrivate, | 113 kFileBrowserPrivate, |
114 kGeolocation, | 114 kGeolocation, |
115 kHistory, | 115 kHistory, |
116 kIdle, | 116 kIdle, |
117 kInput, | 117 kInput, |
118 kInputMethodPrivate, | 118 kInputMethodPrivate, |
119 kKeybinding, | 119 kKeybinding, |
120 kManagedMode, | 120 kManagedModePrivate, |
121 kManagement, | 121 kManagement, |
122 kMediaPlayerPrivate, | 122 kMediaPlayerPrivate, |
123 kMetricsPrivate, | 123 kMetricsPrivate, |
124 kNotification, | 124 kNotification, |
125 kEchoPrivate, | 125 kEchoPrivate, |
126 kPageCapture, | 126 kPageCapture, |
127 kPlugin, | 127 kPlugin, |
128 kPrivacy, | 128 kPrivacy, |
129 kProxy, | 129 kProxy, |
130 kSocket, | 130 kSocket, |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 | 444 |
445 // The list of hosts this effectively grants access to. | 445 // The list of hosts this effectively grants access to. |
446 URLPatternSet effective_hosts_; | 446 URLPatternSet effective_hosts_; |
447 | 447 |
448 // A set of oauth2 scopes that are used by the identity API to create OAuth2 | 448 // A set of oauth2 scopes that are used by the identity API to create OAuth2 |
449 // tokens for accessing the Google Account of the signed-in sync account. | 449 // tokens for accessing the Google Account of the signed-in sync account. |
450 ExtensionOAuth2Scopes scopes_; | 450 ExtensionOAuth2Scopes scopes_; |
451 }; | 451 }; |
452 | 452 |
453 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ | 453 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ |
OLD | NEW |