| Index: ui/views/controls/textfield/native_textfield_win.cc
|
| diff --git a/ui/views/controls/textfield/native_textfield_win.cc b/ui/views/controls/textfield/native_textfield_win.cc
|
| index dc36ebfb60e47bd84ab8b5dda67dcabb15b299e1..516a81df5c13c247f9d6334aa6e082f701e9472e 100644
|
| --- a/ui/views/controls/textfield/native_textfield_win.cc
|
| +++ b/ui/views/controls/textfield/native_textfield_win.cc
|
| @@ -408,11 +408,21 @@ ui::TextInputClient* NativeTextfieldWin::GetTextInputClient() {
|
| return NULL;
|
| }
|
|
|
| -void NativeTextfieldWin::ApplyStyleRange(const gfx::StyleRange& style) {
|
| +void NativeTextfieldWin::SetColor(SkColor value) {
|
| NOTREACHED();
|
| }
|
|
|
| -void NativeTextfieldWin::ApplyDefaultStyle() {
|
| +void NativeTextfieldWin::ApplyColor(SkColor value, const ui::Range& range) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void NativeTextfieldWin::SetStyle(gfx::TextStyle style, bool value) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void NativeTextfieldWin::ApplyStyle(gfx::TextStyle style,
|
| + bool value,
|
| + const ui::Range& range) {
|
| NOTREACHED();
|
| }
|
|
|
|
|