Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: ui/views/controls/textfield/textfield.h

Issue 2729133005: Fix: Cursor missing in omnibox after entering a alphabet in NTP 'Search box' (Closed)
Patch Set: address comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698