Index: Source/core/editing/Caret.h |
diff --git a/Source/core/editing/Caret.h b/Source/core/editing/Caret.h |
index c9d7a107034b76124f59af0f5dcda45f9b1c31fd..fccda9e354e9841b27341df9c54e3fa6678a1d67 100644 |
--- a/Source/core/editing/Caret.h |
+++ b/Source/core/editing/Caret.h |
@@ -59,9 +59,6 @@ protected: |
const LayoutRect& localCaretRectWithoutUpdate() const { return m_caretLocalRect; } |
- bool shouldUpdateCaretRect() const { return m_caretRectNeedsUpdate; } |
- void setCaretRectNeedsUpdate() { m_caretRectNeedsUpdate = true; } |
- |
void setCaretVisibility(CaretVisibility visibility) { m_caretVisibility = visibility; } |
bool caretIsVisible() const { return m_caretVisibility == Visible; } |
CaretVisibility caretVisibility() const { return m_caretVisibility; } |
@@ -72,7 +69,6 @@ protected: |
private: |
LayoutRect m_caretLocalRect; // caret rect in coords local to the renderer responsible for painting the caret |
- bool m_caretRectNeedsUpdate; // true if m_caretRect (and m_absCaretBounds in FrameSelection) need to be calculated |
CaretVisibility m_caretVisibility; |
}; |