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

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

Issue 1679253002: Editing: Add EditingState* argument to EditCommand::doApply. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/editing/commands/TypingCommand.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp b/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
index 352c1e1201ed42de09afa3419dd5e8cc75d6fd3d..0cf1150b0200e83f3983ba17efeb780f27c8abfe 100644
--- a/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/TypingCommand.cpp
@@ -246,7 +246,7 @@ void TypingCommand::closeTyping(LocalFrame* frame)
lastTypingCommand->closeTyping();
}
-void TypingCommand::doApply()
+void TypingCommand::doApply(EditingState*)
{
if (!endingSelection().isNonOrphanedCaretOrRange())
return;

Powered by Google App Engine
This is Rietveld 408576698