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

Unified Diff: Source/core/editing/Editor.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/Editor.cpp
diff --git a/Source/core/editing/Editor.cpp b/Source/core/editing/Editor.cpp
index caad07117cf1ae0c73e92cf4bf75b88027881265..1fe72cb496c9837afbddd296b6ddc09b416ca329 100644
--- a/Source/core/editing/Editor.cpp
+++ b/Source/core/editing/Editor.cpp
@@ -42,19 +42,19 @@
#include "core/dom/NodeTraversal.h"
#include "core/dom/ParserContentPolicy.h"
#include "core/dom/Text.h"
-#include "core/editing/ApplyStyleCommand.h"
-#include "core/editing/DeleteSelectionCommand.h"
#include "core/editing/EditingUtilities.h"
-#include "core/editing/IndentOutdentCommand.h"
#include "core/editing/InputMethodController.h"
-#include "core/editing/InsertListCommand.h"
-#include "core/editing/RemoveFormatCommand.h"
#include "core/editing/RenderedPosition.h"
-#include "core/editing/ReplaceSelectionCommand.h"
-#include "core/editing/SimplifyMarkupCommand.h"
-#include "core/editing/TypingCommand.h"
-#include "core/editing/UndoStack.h"
#include "core/editing/VisibleUnits.h"
+#include "core/editing/commands/ApplyStyleCommand.h"
+#include "core/editing/commands/DeleteSelectionCommand.h"
+#include "core/editing/commands/IndentOutdentCommand.h"
+#include "core/editing/commands/InsertListCommand.h"
+#include "core/editing/commands/RemoveFormatCommand.h"
+#include "core/editing/commands/ReplaceSelectionCommand.h"
+#include "core/editing/commands/SimplifyMarkupCommand.h"
+#include "core/editing/commands/TypingCommand.h"
+#include "core/editing/commands/UndoStack.h"
#include "core/editing/iterators/SearchBuffer.h"
#include "core/editing/markers/DocumentMarkerController.h"
#include "core/editing/serializers/Serialization.h"

Powered by Google App Engine
This is Rietveld 408576698