| Index: ui/base/test/dummy_input_method.cc
|
| ===================================================================
|
| --- ui/base/test/dummy_input_method.cc (revision 162597)
|
| +++ ui/base/test/dummy_input_method.cc (working copy)
|
| @@ -32,10 +32,12 @@
|
| return NULL;
|
| }
|
|
|
| -void DummyInputMethod::DispatchKeyEvent(
|
| - const base::NativeEvent& native_key_event) {
|
| +void DummyInputMethod::DispatchKeyEvent(const base::NativeEvent& event) {
|
| }
|
|
|
| +void DummyInputMethod::DispatchFabricatedKeyEvent(const ui::KeyEvent& event) {
|
| +}
|
| +
|
| void DummyInputMethod::OnTextInputTypeChanged(const TextInputClient* client) {
|
| }
|
|
|
| @@ -46,7 +48,7 @@
|
| }
|
|
|
| std::string DummyInputMethod::GetInputLocale() {
|
| - return "";
|
| + return std::string();
|
| }
|
|
|
| base::i18n::TextDirection DummyInputMethod::GetInputTextDirection() {
|
|
|