Chromium Code Reviews| 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 4aa768978e4bf149ce539dc85ebfd7fdee6d256e..73c27813d1f0635372d6ef1963d49b887b25f41b 100644 |
| --- a/third_party/WebKit/Source/core/editing/commands/UndoStep.h |
| +++ b/third_party/WebKit/Source/core/editing/commands/UndoStep.h |
| @@ -47,6 +47,8 @@ class UndoStep : public GarbageCollectedFinalized<UndoStep> { |
| virtual void unapply() = 0; |
| virtual void reapply() = 0; |
| virtual InputEvent::InputType inputType() const = 0; |
| + virtual int sequence() const = 0; |
|
yosin_UTC9
2017/01/17 08:13:29
Do we really want to keep |UndoStep| as interface?
Xiaocheng
2017/01/17 09:04:02
Do you mean removing |UndoStep| and using |EditCom
|
| + virtual void setSequence(int) = 0; |
| }; |
| } // namespace blink |