| Index: views/controls/textfield/textfield.h
|
| ===================================================================
|
| --- views/controls/textfield/textfield.h (revision 103984)
|
| +++ views/controls/textfield/textfield.h (working copy)
|
| @@ -178,6 +178,14 @@
|
| // Returns whether or not an IME is composing text.
|
| bool IsIMEComposing() const;
|
|
|
| + // Gets the selected range. This is views-implementation only and
|
| + // has to be called after the wrapper is created.
|
| + void GetSelectedRange(ui::Range* range) const;
|
| +
|
| + // Selects the text given by |range|. This is views-implementation only and
|
| + // has to be called after the wrapper is created.
|
| + void SelectRange(const ui::Range& range);
|
| +
|
| // Gets the selection model. This is views-implementation only and
|
| // has to be called after the wrapper is created.
|
| void GetSelectionModel(gfx::SelectionModel* sel) const;
|
|
|