Chromium Code Reviews| Index: ui/views/controls/textfield/textfield.h |
| diff --git a/ui/views/controls/textfield/textfield.h b/ui/views/controls/textfield/textfield.h |
| index 4e4fc2e745e515deed03010cca672b16f6374313..6e03fdc0bf720a3e1046406d502468feec2f9216 100644 |
| --- a/ui/views/controls/textfield/textfield.h |
| +++ b/ui/views/controls/textfield/textfield.h |
| @@ -334,7 +334,10 @@ class VIEWS_EXPORT Textfield : public View, |
| virtual base::string16 GetSelectionClipboardText() const; |
| // Executes the given |command|. |
| - virtual void ExecuteTextEditCommand(ui::TextEditCommand command); |
| + void ExecuteTextEditCommand(ui::TextEditCommand command); |
| + |
| + // Implementation of ExecuteTextEditCommand. |
| + virtual bool ExecuteTextEditCommandImpl(ui::TextEditCommand command); |
|
sadrul
2017/03/09 01:47:38
Document the return value.
yiyix
2017/03/09 02:45:33
Done.
|
| private: |
| friend class TextfieldTestApi; |