зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1423562 part 2. Change external interfaces to not have exposure sets. r=edgar
This avoids us needing to stick [Exposed=Window] on all of them. Differential Revision: https://phabricator.services.mozilla.com/D46696 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
3b969978f5
Коммит
29f544b623
|
@ -511,17 +511,15 @@ class IDLExposureMixins():
|
|||
return workerDebuggerScopes.intersection(self.exposureSet)
|
||||
|
||||
|
||||
class IDLExternalInterface(IDLObjectWithIdentifier, IDLExposureMixins):
|
||||
class IDLExternalInterface(IDLObjectWithIdentifier):
|
||||
def __init__(self, location, parentScope, identifier):
|
||||
assert isinstance(identifier, IDLUnresolvedIdentifier)
|
||||
assert isinstance(parentScope, IDLScope)
|
||||
self.parent = None
|
||||
IDLObjectWithIdentifier.__init__(self, location, parentScope, identifier)
|
||||
IDLExposureMixins.__init__(self, location)
|
||||
IDLObjectWithIdentifier.resolve(self, parentScope)
|
||||
|
||||
def finish(self, scope):
|
||||
IDLExposureMixins.finish(self, scope)
|
||||
pass
|
||||
|
||||
def validate(self):
|
||||
|
@ -2997,8 +2995,9 @@ class IDLWrapperType(IDLType):
|
|||
return True
|
||||
iface = self.inner
|
||||
if iface.isExternal():
|
||||
# Let's say true, though ideally we'd only do this when
|
||||
# exposureSet contains the primary global's name.
|
||||
# Let's say true, so we don't have to implement exposure mixins on
|
||||
# external interfaces and sprinkle [Exposed=Window] on every single
|
||||
# external interface declaration.
|
||||
return True
|
||||
return iface.exposureSet.issuperset(exposureSet)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче