summaryrefslogtreecommitdiffstats
path: root/dom/bindings
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-29 14:15:18 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-29 14:15:18 +0200
commit306db80410e802b0fe9a3b5273d4cf29586a1b17 (patch)
tree5e2370df03be5b04ea225afa1e720d46840dd9bf /dom/bindings
parent92d3042138babf4f82d254f6cb6e11831dcca506 (diff)
downloadUXP-306db80410e802b0fe9a3b5273d4cf29586a1b17.tar
UXP-306db80410e802b0fe9a3b5273d4cf29586a1b17.tar.gz
UXP-306db80410e802b0fe9a3b5273d4cf29586a1b17.tar.lz
UXP-306db80410e802b0fe9a3b5273d4cf29586a1b17.tar.xz
UXP-306db80410e802b0fe9a3b5273d4cf29586a1b17.zip
moebius#161: The Performance Resource Timing (make timestamps be relative to startTime)
https://github.com/MoonchildProductions/moebius/pull/161
Diffstat (limited to 'dom/bindings')
-rw-r--r--dom/bindings/Codegen.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/bindings/Codegen.py b/dom/bindings/Codegen.py
index 3174c37dd..7a6668687 100644
--- a/dom/bindings/Codegen.py
+++ b/dom/bindings/Codegen.py
@@ -1069,6 +1069,20 @@ class CGHeaders(CGWrapper):
if parent:
ancestors.append(parent)
interfaceDeps.extend(ancestors)
+
+ # Include parent interface headers needed for jsonifier code.
+ jsonInterfaceParents = []
+ for desc in descriptors:
+ if not desc.operations['Jsonifier']:
+ continue
+ parent = desc.interface.parent
+ while parent:
+ parentDesc = desc.getDescriptor(parent.identifier.name)
+ if parentDesc.operations['Jsonifier']:
+ jsonInterfaceParents.append(parentDesc.interface)
+ parent = parent.parent
+ interfaceDeps.extend(jsonInterfaceParents)
+
bindingIncludes = set(self.getDeclarationFilename(d) for d in interfaceDeps)
# Grab all the implementation declaration files we need.