| Index: third_party/WebKit/public/web/WebSelection.h
|
| diff --git a/third_party/WebKit/public/web/WebSelection.h b/third_party/WebKit/public/web/WebSelection.h
|
| index 1c334770580b70eece5ba1345b66ff6a363365fd..7c86c6905af3ecfb50d41e34be424fa5e862e543 100644
|
| --- a/third_party/WebKit/public/web/WebSelection.h
|
| +++ b/third_party/WebKit/public/web/WebSelection.h
|
| @@ -32,6 +32,7 @@ public:
|
|
|
| bool isEditable() const { return m_isEditable; }
|
| bool isEmptyTextFormControl() const { return m_isEmptyTextFormControl; }
|
| + bool isHandleVisible() const { return m_isHandleVisible; }
|
|
|
| private:
|
| SelectionType selectionType() const { return m_selectionType; }
|
| @@ -47,6 +48,8 @@ private:
|
| // Whether the selection resides in an empty text form control. Note that
|
| // this only applies to caret-type selections.
|
| bool m_isEmptyTextFormControl;
|
| +
|
| + bool m_isHandleVisible;
|
| };
|
|
|
| } // namespace blink
|
|
|