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 e2bd766a26d295c6f3010f3a02cfe89e87d24b9d..7182a4e2e90f22621bc96d7cd65411f8a9e1e549 100644 |
--- a/third_party/WebKit/Source/core/editing/Editor.h |
+++ b/third_party/WebKit/Source/core/editing/Editor.h |
@@ -253,6 +253,7 @@ public: |
private: |
Member<LocalFrame> m_frame; |
Member<CompositeEditCommand> m_lastEditCommand; |
+ Member<UndoStack> m_undoStack; |
yosin_UTC9
2016/07/04 07:27:41
nit: Let's use|const Member<UndoStack>|, since it
Xiaocheng
2016/07/04 08:03:37
Done.
|
int m_preventRevealSelection; |
bool m_shouldStartNewKillRingSequence; |
bool m_shouldStyleWithCSS; |
@@ -273,8 +274,6 @@ private: |
bool canDeleteRange(const EphemeralRange&) const; |
bool shouldDeleteRange(const EphemeralRange&) const; |
- UndoStack* undoStack() const; |
- |
bool tryDHTMLCopy(); |
bool tryDHTMLCut(); |
bool tryDHTMLPaste(PasteMode); |