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

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

Issue 2151353002: [InputEvent] Replace |EditAction| with |InputType| (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@inputevent-text-styling
Patch Set: Replaced |EditAction| with |InputType| Created 4 years, 5 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: third_party/WebKit/Source/core/editing/commands/UndoStep.h
diff --git a/third_party/WebKit/Source/core/editing/commands/UndoStep.h b/third_party/WebKit/Source/core/editing/commands/UndoStep.h
index e515375d64f4542e31f56b1ee8ff1ff32a30109d..309503f36be6d0ed5961ccf6e63bec4c5bf541d1 100644
--- a/third_party/WebKit/Source/core/editing/commands/UndoStep.h
+++ b/third_party/WebKit/Source/core/editing/commands/UndoStep.h
@@ -31,7 +31,7 @@
#ifndef UndoStep_h
#define UndoStep_h
-#include "core/editing/commands/EditAction.h"
+#include "core/events/InputEvent.h"
#include "platform/heap/Handle.h"
namespace blink {
@@ -46,7 +46,7 @@ public:
virtual bool belongsTo(const LocalFrame&) const = 0;
virtual void unapply() = 0;
virtual void reapply() = 0;
- virtual EditAction editingAction() const = 0;
+ virtual InputEvent::InputType inputType() const = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698