Chromium Code Reviews| Index: views/view.cc |
| diff --git a/views/view.cc b/views/view.cc |
| index fb377678788f32fa33c3e661d32ef623ec415dd8..873c0730f20665876369af45f6c0409b20cb2c77 100644 |
| --- a/views/view.cc |
| +++ b/views/view.cc |
| @@ -838,6 +838,15 @@ bool View::OnMouseWheel(const MouseWheelEvent& event) { |
| return false; |
| } |
| +TextInputClient* View::GetTextInputClient() { |
| + return NULL; |
| +} |
| + |
| +InputMethod* View::GetInputMethod() { |
| + // TODO(suzhe): Implement it. |
|
oshima
2011/03/22 03:35:00
nit: NOTIMPLEMENTED()
James Su
2011/03/22 08:39:35
Done.
|
| + return NULL; |
| +} |
| + |
| // Accelerators ---------------------------------------------------------------- |
| void View::AddAccelerator(const Accelerator& accelerator) { |