Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: Source/bindings/scripts/v8_utilities.py

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/modules/modules.gni ('k') | Source/bindings/templates/interface_base.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/v8_utilities.py
diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py
index 251a0a6a0d0f8c991a6571f5f66aa3f09dfdbda5..dab6f395f86de3abf4ea526424a3a96c22452a08 100644
--- a/Source/bindings/scripts/v8_utilities.py
+++ b/Source/bindings/scripts/v8_utilities.py
@@ -248,6 +248,7 @@ EXPOSED_EXECUTION_CONTEXT_METHOD = {
'DedicatedWorker': 'isDedicatedWorkerGlobalScope',
'ServiceWorker': 'isServiceWorkerGlobalScope',
'SharedWorker': 'isSharedWorkerGlobalScope',
+ 'UIWorker': 'isUIWorkerGlobalScope',
'Window': 'isDocument',
'Worker': 'isWorkerGlobalScope',
}
@@ -280,7 +281,7 @@ def expanded_exposure_set_for_interface(interface):
# "Worker" is an aggregation for the different kinds of workers.
if 'Worker' in exposure_set:
- exposure_set.extend(('DedicatedWorker', 'SharedWorker', 'ServiceWorker'))
+ exposure_set.extend(('DedicatedWorker', 'SharedWorker', 'ServiceWorker', 'UIWorker'))
return sorted(set(exposure_set))
« no previous file with comments | « Source/bindings/modules/modules.gni ('k') | Source/bindings/templates/interface_base.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698