| Index: ui/views/controls/textfield/textfield.h
|
| diff --git a/ui/views/controls/textfield/textfield.h b/ui/views/controls/textfield/textfield.h
|
| index 21dcca1a578fd0b1d316d46510e8f17aded8487b..b1d37c9add5685ad01c91e8947cd3a3589624e98 100644
|
| --- a/ui/views/controls/textfield/textfield.h
|
| +++ b/ui/views/controls/textfield/textfield.h
|
| @@ -211,6 +211,7 @@ class VIEWS_EXPORT Textfield : public View,
|
| int GetBaseline() const override;
|
| gfx::Size GetPreferredSize() const override;
|
| const char* GetClassName() const override;
|
| + void SetBorder(std::unique_ptr<Border> b) override;
|
| gfx::NativeCursor GetCursor(const ui::MouseEvent& event) override;
|
| bool OnMousePressed(const ui::MouseEvent& event) override;
|
| bool OnMouseDragged(const ui::MouseEvent& event) override;
|
| @@ -512,6 +513,9 @@ class VIEWS_EXPORT Textfield : public View,
|
| // scrolling. If |true|, handles are shown after scrolling ends.
|
| bool touch_handles_hidden_due_to_scroll_;
|
|
|
| + // True if this textfield should use a focus ring to indicate focus.
|
| + bool use_focus_ring_;
|
| +
|
| // Context menu related members.
|
| std::unique_ptr<ui::SimpleMenuModel> context_menu_contents_;
|
| std::unique_ptr<views::MenuRunner> context_menu_runner_;
|
|
|