| Index: third_party/WebKit/Source/web/WebSelection.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSelection.cpp b/third_party/WebKit/Source/web/WebSelection.cpp
|
| index f043d2e3251c58cb21bd5220099116dcf2ff4a91..1b3bc9d31aa52513b9459013ddeed9332f0d8bf7 100644
|
| --- a/third_party/WebKit/Source/web/WebSelection.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSelection.cpp
|
| @@ -38,6 +38,7 @@ WebSelection::WebSelection(const CompositedSelection& selection)
|
| , m_end(getWebSelectionBound(selection, false))
|
| , m_isEditable(selection.isEditable)
|
| , m_isEmptyTextFormControl(selection.isEmptyTextFormControl)
|
| + , m_isHandleVisible(selection.isHandleVisible)
|
| {
|
| }
|
|
|
| @@ -47,6 +48,7 @@ WebSelection::WebSelection(const WebSelection& other)
|
| , m_end(other.m_end)
|
| , m_isEditable(other.m_isEditable)
|
| , m_isEmptyTextFormControl(other.m_isEmptyTextFormControl)
|
| + , m_isHandleVisible(other.m_isHandleVisible)
|
| {
|
| }
|
|
|
|
|