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

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

Issue 2636403002: Clean up names related to EditCommandComposition (Closed)
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/core/editing/commands/EditCommand.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/commands/UndoStep.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/UndoStep.cpp b/third_party/WebKit/Source/core/editing/commands/UndoStep.cpp
index d033b436f91f043b325b59ffb85e39025134d368..bbc47d2ad5d3750119842c5ce9b93e9867679904 100644
--- a/third_party/WebKit/Source/core/editing/commands/UndoStep.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/UndoStep.cpp
@@ -76,8 +76,8 @@ void UndoStep::append(SimpleEditCommand* command) {
m_commands.push_back(command);
}
-void UndoStep::append(UndoStep* composition) {
- m_commands.appendVector(composition->m_commands);
+void UndoStep::append(UndoStep* undoStep) {
+ m_commands.appendVector(undoStep->m_commands);
}
void UndoStep::setStartingSelection(const VisibleSelection& selection) {
« no previous file with comments | « third_party/WebKit/Source/core/editing/commands/EditCommand.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698