Index: third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.idl |
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.idl b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.idl |
index 3741912f947669ad33f514b5c03742581d4cdebc..8576488ad797d980475da76db05e873f67a43601 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.idl |
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.idl |
@@ -5,7 +5,7 @@ |
[ |
RuntimeEnabled=CustomElementsV1, |
] interface CustomElementRegistry { |
- [CallWith=ScriptState, CEReactions, CustomElementCallbacks, RaisesException, MeasureAs=CustomElementRegistryDefine] void define(DOMString name, Function constructor, optional ElementDefinitionOptions options); |
- any get(DOMString name); |
- [CallWith=ScriptState,RaisesException] Promise<void> whenDefined(DOMString name); |
+ [CallWith=ScriptState, CEReactions, CustomElementCallbacks, RaisesException, MeasureAs=CERegistryAPI] void define(DOMString name, Function constructor, optional ElementDefinitionOptions options); |
+ [MeasureAs=CERegistryAPI] any get(DOMString name); |
+ [CallWith=ScriptState,RaisesException,MeasureAs=CERegistryAPI] Promise<void> whenDefined(DOMString name); |
}; |