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

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

Issue 2258023003: Remove first argument for shoudCreateCustomElement() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/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 3d8353bab4c9674e07060b00f76a344eec56204f..51c299f2853146d7c615e8d1cb386f932565bc0c 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElement.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElement.h
@@ -34,8 +34,8 @@ public:
static bool isValidName(const AtomicString& name);
- static bool shouldCreateCustomElement(Document&, const AtomicString& localName);
- static bool shouldCreateCustomElement(Document&, const QualifiedName&);
+ static bool shouldCreateCustomElement(const AtomicString& localName);
+ static bool shouldCreateCustomElement(const QualifiedName&);
static HTMLElement* createCustomElementSync(Document&, const AtomicString& localName, ExceptionState&);
static HTMLElement* createCustomElementSync(Document&, const QualifiedName&, ExceptionState&);
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/custom/CustomElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698