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

Unified Diff: third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.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/BreakBlockquoteCommand.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
index 2ea3a63b7e6346a21291d911b26ffc82d8a3d030..b9b077fee78803103605c71b5b601109eb40da92 100644
--- a/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/BreakBlockquoteCommand.cpp
@@ -71,8 +71,9 @@ bool isLastVisiblePositionInNode(const VisiblePosition& visiblePosition,
} // namespace
-BreakBlockquoteCommand::BreakBlockquoteCommand(Document& document)
- : CompositeEditCommand(document) {}
+BreakBlockquoteCommand::BreakBlockquoteCommand(Document& document,
+ CommandSource source)
+ : CompositeEditCommand(document, source) {}
void BreakBlockquoteCommand::doApply(EditingState* editingState) {
if (endingSelection().isNone())

Powered by Google App Engine
This is Rietveld 408576698