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

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

Issue 2644063002: Make SynchronousMutationObserver::didMergeTextNodes() to take both merged and merging nodes (Closed)
Patch Set: 2017-01-19T17:22:18 Created 3 years, 11 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/SynchronousMutationObserver.cpp
diff --git a/third_party/WebKit/Source/core/dom/SynchronousMutationObserver.cpp b/third_party/WebKit/Source/core/dom/SynchronousMutationObserver.cpp
index 1669381dc41f38471e70a89db03446798ff93efb..1840e8bac960030dabb1b05402f2d27a5d74f25f 100644
--- a/third_party/WebKit/Source/core/dom/SynchronousMutationObserver.cpp
+++ b/third_party/WebKit/Source/core/dom/SynchronousMutationObserver.cpp
@@ -13,7 +13,9 @@ SynchronousMutationObserver::SynchronousMutationObserver()
: LifecycleObserver(nullptr) {}
void SynchronousMutationObserver::didChangeChildren(const ContainerNode&) {}
-void SynchronousMutationObserver::didMergeTextNodes(Text&, unsigned) {}
+void SynchronousMutationObserver::didMergeTextNodes(const Text&,
+ const NodeWithIndex&,
+ unsigned) {}
void SynchronousMutationObserver::didMoveTreeToNewDocument(const Node&) {}
void SynchronousMutationObserver::didSplitTextNode(const Text&) {}
void SynchronousMutationObserver::didUpdateCharacterData(CharacterData*,
« no previous file with comments | « third_party/WebKit/Source/core/dom/SynchronousMutationObserver.h ('k') | third_party/WebKit/Source/core/dom/Text.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698