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

Unified Diff: third_party/WebKit/Source/core/editing/commands/DragAndDropCommand.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/DragAndDropCommand.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/DragAndDropCommand.cpp b/third_party/WebKit/Source/core/editing/commands/DragAndDropCommand.cpp
index 6f79ef8a1c0a46fbf6346505cecfac22477ae07c..13dee39f616e92633ab932df1fdd689ac719aeee 100644
--- a/third_party/WebKit/Source/core/editing/commands/DragAndDropCommand.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/DragAndDropCommand.cpp
@@ -6,8 +6,8 @@
namespace blink {
-DragAndDropCommand::DragAndDropCommand(Document& document)
- : CompositeEditCommand(document) {}
+DragAndDropCommand::DragAndDropCommand(Document& document, CommandSource source)
+ : CompositeEditCommand(document, source) {}
bool DragAndDropCommand::isCommandGroupWrapper() const {
return true;

Powered by Google App Engine
This is Rietveld 408576698