| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/base/ime/dummy_text_input_client.h" | 5 #include "ui/base/ime/dummy_text_input_client.h" |
| 6 #include "ui/gfx/geometry/rect.h" | 6 #include "ui/gfx/geometry/rect.h" |
| 7 | 7 |
| 8 namespace ui { | 8 namespace ui { |
| 9 | 9 |
| 10 DummyTextInputClient::DummyTextInputClient() | 10 DummyTextInputClient::DummyTextInputClient() |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 return false; | 99 return false; |
| 100 } | 100 } |
| 101 | 101 |
| 102 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before, | 102 void DummyTextInputClient::ExtendSelectionAndDelete(size_t before, |
| 103 size_t after) { | 103 size_t after) { |
| 104 } | 104 } |
| 105 | 105 |
| 106 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) { | 106 void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) { |
| 107 } | 107 } |
| 108 | 108 |
| 109 void DummyTextInputClient::OnCandidateWindowShown() { | |
| 110 } | |
| 111 | |
| 112 void DummyTextInputClient::OnCandidateWindowUpdated() { | |
| 113 } | |
| 114 | |
| 115 void DummyTextInputClient::OnCandidateWindowHidden() { | |
| 116 } | |
| 117 | |
| 118 bool DummyTextInputClient::IsEditCommandEnabled(int command_id) { | 109 bool DummyTextInputClient::IsEditCommandEnabled(int command_id) { |
| 119 return false; | 110 return false; |
| 120 } | 111 } |
| 121 | 112 |
| 122 void DummyTextInputClient::SetEditCommandForNextKeyEvent(int command_id) { | 113 void DummyTextInputClient::SetEditCommandForNextKeyEvent(int command_id) { |
| 123 } | 114 } |
| 124 | 115 |
| 125 } // namespace ui | 116 } // namespace ui |
| OLD | NEW |