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

Unified Diff: third_party/WebKit/Source/core/dom/DOMImplementation.h

Issue 2838123002: Count element name validity per DOM versus HTML parsing. (Closed)
Patch Set: Do not need the attribute counting. Created 3 years, 8 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/DOMImplementation.h
diff --git a/third_party/WebKit/Source/core/dom/DOMImplementation.h b/third_party/WebKit/Source/core/dom/DOMImplementation.h
index 0fde0fda8861f49e939998b24b4465ba8b3109e8..d8534d67991b08e07b894c9e628626b8f17bb6c0 100644
--- a/third_party/WebKit/Source/core/dom/DOMImplementation.h
+++ b/third_party/WebKit/Source/core/dom/DOMImplementation.h
@@ -34,6 +34,7 @@ class DocumentInit;
class DocumentType;
class ExceptionState;
class HTMLDocument;
+class LocalDOMWindow;
class XMLDocument;
class CORE_EXPORT DOMImplementation final
@@ -54,7 +55,8 @@ class CORE_EXPORT DOMImplementation final
const String& public_id,
const String& system_id,
ExceptionState&);
- XMLDocument* createDocument(const AtomicString& namespace_uri,
+ XMLDocument* createDocument(const LocalDOMWindow*,
+ const AtomicString& namespace_uri,
const AtomicString& qualified_name,
DocumentType*,
ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698