Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/FrameSelection.h |
| diff --git a/third_party/WebKit/Source/core/editing/FrameSelection.h b/third_party/WebKit/Source/core/editing/FrameSelection.h |
| index 50a9e643c52b60fcf75b867d8bb4f138b34ccb3b..06983ccc0af9e0418a6ed1fd9f2a55e297e00480 100644 |
| --- a/third_party/WebKit/Source/core/editing/FrameSelection.h |
| +++ b/third_party/WebKit/Source/core/editing/FrameSelection.h |
| @@ -32,6 +32,7 @@ |
| #include "core/dom/Range.h" |
| #include "core/dom/SynchronousMutationObserver.h" |
| #include "core/editing/EphemeralRange.h" |
| +#include "core/editing/LayoutSelection.h" |
| #include "core/editing/VisiblePosition.h" |
| #include "core/editing/VisibleSelection.h" |
| #include "core/editing/iterators/TextIteratorBehavior.h" |
| @@ -242,7 +243,7 @@ class CORE_EXPORT FrameSelection final |
| RevealExtentOption = kDoNotRevealExtent); |
| void SetSelectionFromNone(); |
| - void UpdateAppearance(); |
| + void UpdateAppearance(LayoutSelection::PaintHint); |
| bool ShouldShowBlockCursor() const; |
| void SetShouldShowBlockCursor(bool); |
| @@ -308,6 +309,7 @@ class CORE_EXPORT FrameSelection final |
| const Member<FrameCaret> frame_caret_; |
| bool use_secure_keyboard_entry_when_active_ = false; |
| + bool text_control_focus_ = false; |
|
yosin_UTC9
2017/04/13 09:31:50
How about |text_control_had_focus_| or another goo
hugoh_UTC2
2017/04/14 01:34:47
Done. I renamed it to text_control_focused_.
|
| }; |
| } // namespace blink |