| Index: ui/views/controls/textfield/textfield.h
|
| diff --git a/ui/views/controls/textfield/textfield.h b/ui/views/controls/textfield/textfield.h
|
| index 58164b5d07b836c85b93bc2314ce75251c318187..3bb770bc6891e0dbcd3169b3e1e915614fcd05e0 100644
|
| --- a/ui/views/controls/textfield/textfield.h
|
| +++ b/ui/views/controls/textfield/textfield.h
|
| @@ -203,9 +203,6 @@ class VIEWS_EXPORT Textfield : public View,
|
| // Set the accessible name of the text field.
|
| void SetAccessibleName(const base::string16& name);
|
|
|
| - // Performs the action associated with the specified command id.
|
| - void ExecuteCommand(int command_id);
|
| -
|
| // Returns whether there is a drag operation originating from the textfield.
|
| bool HasTextBeingDragged();
|
|
|
| @@ -321,6 +318,9 @@ class VIEWS_EXPORT Textfield : public View,
|
| // Get the text from the selection clipboard.
|
| virtual base::string16 GetSelectionClipboardText() const;
|
|
|
| + // Executes the given text editing command.
|
| + virtual void ExecuteEditCommand(int command_id);
|
| +
|
| private:
|
| friend class TextfieldTestApi;
|
|
|
|
|