| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 kIme, | 113 kIme, |
| 114 kInputMethodPrivate, | 114 kInputMethodPrivate, |
| 115 kManagement, | 115 kManagement, |
| 116 kMediaPlayerPrivate, | 116 kMediaPlayerPrivate, |
| 117 kMetricsPrivate, | 117 kMetricsPrivate, |
| 118 kNotification, | 118 kNotification, |
| 119 kPageCapture, | 119 kPageCapture, |
| 120 kPlugin, | 120 kPlugin, |
| 121 kProxy, | 121 kProxy, |
| 122 kSocket, | 122 kSocket, |
| 123 kStorage, |
| 123 kSystemPrivate, | 124 kSystemPrivate, |
| 124 kTab, | 125 kTab, |
| 125 kTerminalPrivate, | 126 kTerminalPrivate, |
| 126 kTts, | 127 kTts, |
| 127 kTtsEngine, | 128 kTtsEngine, |
| 128 kUnlimitedStorage, | 129 kUnlimitedStorage, |
| 129 kWebNavigation, | 130 kWebNavigation, |
| 130 kWebRequest, | 131 kWebRequest, |
| 131 kWebRequestBlocking, | 132 kWebRequestBlocking, |
| 132 kWebSocketProxyPrivate, | 133 kWebSocketProxyPrivate, |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 | 473 |
| 473 // The list of hosts that can be scripted by content scripts. | 474 // The list of hosts that can be scripted by content scripts. |
| 474 // TODO(jstritar): Rename to "user_script_hosts_"? | 475 // TODO(jstritar): Rename to "user_script_hosts_"? |
| 475 URLPatternSet scriptable_hosts_; | 476 URLPatternSet scriptable_hosts_; |
| 476 | 477 |
| 477 // The list of hosts this effectively grants access to. | 478 // The list of hosts this effectively grants access to. |
| 478 URLPatternSet effective_hosts_; | 479 URLPatternSet effective_hosts_; |
| 479 }; | 480 }; |
| 480 | 481 |
| 481 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ | 482 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_PERMISSION_SET_H_ |
| OLD | NEW |