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

Unified Diff: third_party/WebKit/Source/core/editing/Editor.h

Issue 2642663002: Rename class EditCommandComposition to UndoStep (Closed)
Patch Set: Remove a redundant TODO 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 | « no previous file | third_party/WebKit/Source/core/editing/Editor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/Editor.h
diff --git a/third_party/WebKit/Source/core/editing/Editor.h b/third_party/WebKit/Source/core/editing/Editor.h
index e34b28dadf360525899a6f16aaee725ef0e5e726..a8fd72f5a1e5eac742bb3d073e33e769d72bac88 100644
--- a/third_party/WebKit/Source/core/editing/Editor.h
+++ b/third_party/WebKit/Source/core/editing/Editor.h
@@ -45,7 +45,6 @@ namespace blink {
class CompositeEditCommand;
class DragData;
-class EditCommandComposition;
class EditorClient;
class EditorInternalCommand;
class LocalFrame;
@@ -56,6 +55,7 @@ class SpellChecker;
class StylePropertySet;
class TextEvent;
class UndoStack;
+class UndoStep;
enum class EditCommandSource;
enum class DeleteDirection;
@@ -131,8 +131,8 @@ class CORE_EXPORT Editor final : public GarbageCollectedFinalized<Editor> {
void applyParagraphStyleToSelection(StylePropertySet*, InputEvent::InputType);
void appliedEditing(CompositeEditCommand*);
- void unappliedEditing(EditCommandComposition*);
- void reappliedEditing(EditCommandComposition*);
+ void unappliedEditing(UndoStep*);
+ void reappliedEditing(UndoStep*);
void setShouldStyleWithCSS(bool flag) { m_shouldStyleWithCSS = flag; }
bool shouldStyleWithCSS() const { return m_shouldStyleWithCSS; }
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/Editor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698