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

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

Issue 2054433002: Implement "create an element" when sync for Custom Element V1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@async-ce
Patch Set: Prefer ExceptionState over throw Created 4 years, 6 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/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index e9a814b8edf0630505a3b5af6d83219a7dbca997..1904a98dc1c1c4c536c9fced4ea92208ee9e6032 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -309,6 +309,7 @@ public:
Node* importNode(Node* importedNode, bool deep, ExceptionState&);
Element* createElementNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState&);
Element* createElement(const QualifiedName&, CreateElementFlags);
+ Element* createElement(const QualifiedName&, CreateElementFlags, ExceptionState&);
dominicc (has gone to gerrit) 2016/06/10 06:13:28 OK now I'm really confused. Who uses *this*? I th
kojii 2016/06/10 19:01:45 Done. took some refactoring, but not all yet.
Element* elementFromPoint(int x, int y) const;
HeapVector<Member<Element>> elementsFromPoint(int x, int y) const;

Powered by Google App Engine
This is Rietveld 408576698