| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 kBookmark, | 101 kBookmark, |
| 102 kBrowsingData, | 102 kBrowsingData, |
| 103 kChromeAuthPrivate, | 103 kChromeAuthPrivate, |
| 104 kChromeosInfoPrivate, | 104 kChromeosInfoPrivate, |
| 105 kClipboardRead, | 105 kClipboardRead, |
| 106 kClipboardWrite, | 106 kClipboardWrite, |
| 107 kContentSettings, | 107 kContentSettings, |
| 108 kContextMenus, | 108 kContextMenus, |
| 109 kCookie, | 109 kCookie, |
| 110 kDebugger, | 110 kDebugger, |
| 111 kDeclarative, |
| 112 kDeclarativeWebRequest, |
| 111 kDevtools, | 113 kDevtools, |
| 112 kExperimental, | 114 kExperimental, |
| 113 kFileBrowserHandler, | 115 kFileBrowserHandler, |
| 114 kFileBrowserPrivate, | 116 kFileBrowserPrivate, |
| 115 kGeolocation, | 117 kGeolocation, |
| 116 kHistory, | 118 kHistory, |
| 117 kIdle, | 119 kIdle, |
| 118 kInput, | 120 kInput, |
| 119 kInputMethodPrivate, | 121 kInputMethodPrivate, |
| 120 kKeybinding, | 122 kKeybinding, |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 | 447 |
| 446 // The list of hosts this effectively grants access to. | 448 // The list of hosts this effectively grants access to. |
| 447 URLPatternSet effective_hosts_; | 449 URLPatternSet effective_hosts_; |
| 448 | 450 |
| 449 // A set of oauth2 scopes that are used by the identity API to create OAuth2 | 451 // A set of oauth2 scopes that are used by the identity API to create OAuth2 |
| 450 // tokens for accessing the Google Account of the signed-in sync account. | 452 // tokens for accessing the Google Account of the signed-in sync account. |
| 451 ExtensionOAuth2Scopes scopes_; | 453 ExtensionOAuth2Scopes scopes_; |
| 452 }; | 454 }; |
| 453 | 455 |
| 454 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ | 456 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ |
| OLD | NEW |