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

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

Issue 1294543005: Move execCommand related files in core/editing/ related files into core/editing/commands/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-18T14:20:58 Rebase for merging code style fixes Created 5 years, 4 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: Source/core/editing/commands/TypingCommand.cpp
diff --git a/Source/core/editing/TypingCommand.cpp b/Source/core/editing/commands/TypingCommand.cpp
similarity index 98%
rename from Source/core/editing/TypingCommand.cpp
rename to Source/core/editing/commands/TypingCommand.cpp
index e338359f680fe80b31d5327f9eea68bdf030d722..4c20d85a998c3dfdda938e88ea1c776232ae4947 100644
--- a/Source/core/editing/TypingCommand.cpp
+++ b/Source/core/editing/commands/TypingCommand.cpp
@@ -24,21 +24,21 @@
*/
#include "config.h"
-#include "core/editing/TypingCommand.h"
+#include "core/editing/commands/TypingCommand.h"
#include "core/HTMLNames.h"
#include "core/dom/Document.h"
#include "core/dom/Element.h"
#include "core/dom/ElementTraversal.h"
-#include "core/editing/BreakBlockquoteCommand.h"
#include "core/editing/EditingUtilities.h"
#include "core/editing/Editor.h"
#include "core/editing/FrameSelection.h"
-#include "core/editing/InsertLineBreakCommand.h"
-#include "core/editing/InsertParagraphSeparatorCommand.h"
-#include "core/editing/InsertTextCommand.h"
#include "core/editing/VisiblePosition.h"
#include "core/editing/VisibleUnits.h"
+#include "core/editing/commands/BreakBlockquoteCommand.h"
+#include "core/editing/commands/InsertLineBreakCommand.h"
+#include "core/editing/commands/InsertParagraphSeparatorCommand.h"
+#include "core/editing/commands/InsertTextCommand.h"
#include "core/editing/spellcheck/SpellChecker.h"
#include "core/frame/LocalFrame.h"
#include "core/html/HTMLBRElement.h"

Powered by Google App Engine
This is Rietveld 408576698