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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl

Issue 2292433002: CL for perf tryjob on linux (Closed)
Patch Set: Created 4 years, 4 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
Index: third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
index 385c01603ba81bcf9de31ccb7fb1019b711956b2..9dd2c5a399dea925b2df2105c02e977cb7158023 100644
--- a/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
@@ -81,6 +81,7 @@ static void create{{namespace}}FunctionMap()
Document& document,
{% if namespace == 'HTML' %}
HTMLFormElement* formElement,
+ ExceptionState* exceptionState,
{% endif %}
CreateElementFlags flags)
{
@@ -94,7 +95,7 @@ static void create{{namespace}}FunctionMap()
QualifiedName tagName(nullAtom, localName, HTMLNames::xhtmlNamespaceURI);
if (flags & AsynchronousCustomElements)
return CustomElement::createCustomElementAsync(document, tagName);
- return CustomElement::createCustomElementSync(document, tagName);
+ return CustomElement::createCustomElementSync(document, tagName, exceptionState);
}
{% endif %}

Powered by Google App Engine
This is Rietveld 408576698