| Index: ui/views/controls/textfield/textfield_unittest.cc
|
| diff --git a/ui/views/controls/textfield/textfield_unittest.cc b/ui/views/controls/textfield/textfield_unittest.cc
|
| index 90cb4f866b03991b086016c9d3e011e84c66cd19..0a9b767754ef38ed307214bcce70ea9366aa1c00 100644
|
| --- a/ui/views/controls/textfield/textfield_unittest.cc
|
| +++ b/ui/views/controls/textfield/textfield_unittest.cc
|
| @@ -83,8 +83,6 @@ class MockInputMethod : public ui::InputMethodBase {
|
| void OnTextInputTypeChanged(const ui::TextInputClient* client) override;
|
| void OnCaretBoundsChanged(const ui::TextInputClient* client) override {}
|
| void CancelComposition(const ui::TextInputClient* client) override;
|
| - void OnInputLocaleChanged() override {}
|
| - std::string GetInputLocale() override;
|
| bool IsCandidatePopupOpen() const override;
|
| void ShowImeIfNeeded() override {}
|
|
|
| @@ -211,10 +209,6 @@ void MockInputMethod::CancelComposition(const ui::TextInputClient* client) {
|
| }
|
| }
|
|
|
| -std::string MockInputMethod::GetInputLocale() {
|
| - return "en-US";
|
| -}
|
| -
|
| bool MockInputMethod::IsCandidatePopupOpen() const {
|
| return false;
|
| }
|
|
|