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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentFragment.cpp

Issue 2697923005: Remove unnecessary override of Node#cloneNode in ShadowRoot's WebIDL (Closed)
Patch Set: updated {mac,win} global-interface-listing-expected.txt Created 3 years, 10 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/DocumentFragment.cpp
diff --git a/third_party/WebKit/Source/core/dom/DocumentFragment.cpp b/third_party/WebKit/Source/core/dom/DocumentFragment.cpp
index 8f7ec8a77879928b28c0f685aa44f61170375863..4db73c0fcbfe1183a4cda623da8c99412f5231aa 100644
--- a/third_party/WebKit/Source/core/dom/DocumentFragment.cpp
+++ b/third_party/WebKit/Source/core/dom/DocumentFragment.cpp
@@ -57,7 +57,7 @@ bool DocumentFragment::childTypeAllowed(NodeType type) const {
}
}
-Node* DocumentFragment::cloneNode(bool deep) {
+Node* DocumentFragment::cloneNode(bool deep, ExceptionState&) {
DocumentFragment* clone = create(document());
if (deep)
cloneChildNodes(clone);
« no previous file with comments | « third_party/WebKit/Source/core/dom/DocumentFragment.h ('k') | third_party/WebKit/Source/core/dom/DocumentType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698