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

Unified Diff: third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp

Issue 2574793002: [Editing] Store |CommandSource| in |CompositeEditCommand| (Closed)
Patch Set: Created 4 years 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/editing/commands/SimplifyMarkupCommand.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp b/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
index c7fd0fdae8d920a1fdd1f13b6715cb3741993760..bc89ae6840101a1bc33d52a5fa07767d6e26b2e6 100644
--- a/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/SimplifyMarkupCommand.cpp
@@ -34,9 +34,10 @@
namespace blink {
SimplifyMarkupCommand::SimplifyMarkupCommand(Document& document,
+ CommandSource source,
Node* firstNode,
Node* nodeAfterLast)
- : CompositeEditCommand(document),
+ : CompositeEditCommand(document, source),
m_firstNode(firstNode),
m_nodeAfterLast(nodeAfterLast) {}

Powered by Google App Engine
This is Rietveld 408576698