Index: third_party/WebKit/Source/core/editing/LayoutSelection.h |
diff --git a/third_party/WebKit/Source/core/editing/LayoutSelection.h b/third_party/WebKit/Source/core/editing/LayoutSelection.h |
index 4933d31200d1e4253c602ae87931378195916001..17b7c6dc7f5b15a0e312cb984899cfd2868aed52 100644 |
--- a/third_party/WebKit/Source/core/editing/LayoutSelection.h |
+++ b/third_party/WebKit/Source/core/editing/LayoutSelection.h |
@@ -32,14 +32,12 @@ class FrameSelection; |
class LayoutSelection final : public GarbageCollected<LayoutSelection> { |
public: |
- enum class PaintHint { kHide, kKeep, kPaint }; |
- |
static LayoutSelection* Create(FrameSelection& frame_selection) { |
return new LayoutSelection(frame_selection); |
} |
bool HasPendingSelection() const { return has_pending_selection_; } |
- void SetHasPendingSelection(PaintHint); |
+ void SetHasPendingSelection() { has_pending_selection_ = true; } |
void Commit(); |
IntRect SelectionBounds(); |
@@ -68,7 +66,6 @@ class LayoutSelection final : public GarbageCollected<LayoutSelection> { |
Member<FrameSelection> frame_selection_; |
bool has_pending_selection_ : 1; |
- bool force_hide_ : 1; |
// The current selection represented as 2 boundaries. |
// Selection boundaries are represented in LayoutView by a tuple |