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

Unified Diff: third_party/WebKit/Source/core/editing/commands/EditCommand.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/EditCommand.h
diff --git a/third_party/WebKit/Source/core/editing/commands/EditCommand.h b/third_party/WebKit/Source/core/editing/commands/EditCommand.h
index 91ecb82b01f0eebe974ce185a38459eab1789f8d..7a4b1f33dc3bee52884cedb99f593ee656a0a0fb 100644
--- a/third_party/WebKit/Source/core/editing/commands/EditCommand.h
+++ b/third_party/WebKit/Source/core/editing/commands/EditCommand.h
@@ -28,7 +28,7 @@
#include "core/CoreExport.h"
#include "core/editing/VisibleSelection.h"
-#include "core/editing/commands/EditAction.h"
+#include "core/events/InputEvent.h"
#include "platform/heap/Handle.h"
namespace blink {
@@ -43,7 +43,7 @@ public:
void setParent(CompositeEditCommand*);
- virtual EditAction editingAction() const;
+ virtual InputEvent::InputType inputType() const;
const VisibleSelection& startingSelection() const { return m_startingSelection; }
const VisibleSelection& endingSelection() const { return m_endingSelection; }

Powered by Google App Engine
This is Rietveld 408576698