| 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"
|
|
|