| Index: ui/base/ime/chromeos/mock_ime_engine_handler.cc
|
| diff --git a/ui/base/ime/chromeos/mock_ime_engine_handler.cc b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
|
| index 321651881ef2e9cfb190ae2502291dce42034ed7..e920e37e0d6eafc1df43139b0fb8bc770f165d2c 100644
|
| --- a/ui/base/ime/chromeos/mock_ime_engine_handler.cc
|
| +++ b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
|
| @@ -76,17 +76,6 @@ void MockIMEEngineHandler::SetCompositionBounds(
|
| const std::vector<gfx::Rect>& bounds) {
|
| }
|
|
|
| -bool MockIMEEngineHandler::SetComposition(
|
| - int context_id,
|
| - const char* text,
|
| - int selection_start,
|
| - int selection_end,
|
| - int cursor,
|
| - const std::vector<SegmentInfo>& segments,
|
| - std::string* error) {
|
| - return false;
|
| -}
|
| -
|
| bool MockIMEEngineHandler::ClearComposition(int context_id,
|
| std::string* error) {
|
| return false;
|
| @@ -98,12 +87,6 @@ bool MockIMEEngineHandler::CommitText(int context_id,
|
| return false;
|
| }
|
|
|
| -bool MockIMEEngineHandler::SendKeyEvents(
|
| - int context_id,
|
| - const std::vector<KeyboardEvent>& events) {
|
| - return false;
|
| -}
|
| -
|
| bool MockIMEEngineHandler::IsActive() const {
|
| return false;
|
| }
|
| @@ -119,35 +102,15 @@ bool MockIMEEngineHandler::DeleteSurroundingText(int context_id,
|
| return false;
|
| }
|
|
|
| -const MockIMEEngineHandler::CandidateWindowProperty&
|
| -MockIMEEngineHandler::GetCandidateWindowProperty() const {
|
| - return candidate_window_property_;
|
| -}
|
| -
|
| bool MockIMEEngineHandler::SetCandidateWindowVisible(bool visible,
|
| std::string* error) {
|
| return false;
|
| }
|
|
|
| -bool MockIMEEngineHandler::SetCandidates(
|
| - int context_id,
|
| - const std::vector<Candidate>& candidates,
|
| - std::string* error) {
|
| - return false;
|
| -}
|
| -
|
| bool MockIMEEngineHandler::SetCursorPosition(int context_id,
|
| int candidate_id,
|
| std::string* error) {
|
| return false;
|
| }
|
|
|
| -bool MockIMEEngineHandler::SetMenuItems(const std::vector<MenuItem>& items) {
|
| - return false;
|
| -}
|
| -
|
| -bool MockIMEEngineHandler::UpdateMenuItems(const std::vector<MenuItem>& items) {
|
| - return false;
|
| -}
|
| -
|
| } // namespace chromeos
|
|
|