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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElement.h

Issue 2443543002: createElement should not transmit exceptions but report them. (Closed)
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/dom/custom/CustomElement.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElement.h b/third_party/WebKit/Source/core/dom/custom/CustomElement.h
index 8bfc6f778db80f9a252a1e191285e95373ee0a73..840e3f22ebd29473d7da5cbdf888755db7d1ce2f 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElement.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElement.h
@@ -66,11 +66,7 @@ class CORE_EXPORT CustomElement {
static bool shouldCreateCustomElement(const QualifiedName&);
static HTMLElement* createCustomElementSync(Document&,
- const AtomicString& localName,
- ExceptionState&);
- static HTMLElement* createCustomElementSync(Document&,
- const QualifiedName&,
- ExceptionState&);
+ const AtomicString& localName);
static HTMLElement* createCustomElementSync(Document&, const QualifiedName&);
static HTMLElement* createCustomElementAsync(Document&, const QualifiedName&);

Powered by Google App Engine
This is Rietveld 408576698