| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chromeos/dbus/ibus/mock_ibus_engine_service.h" | 5 #include "chromeos/dbus/ibus/mock_ibus_engine_service.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 MockIBusEngineService::MockIBusEngineService() { | 9 MockIBusEngineService::MockIBusEngineService() { |
| 10 } | 10 } |
| 11 | 11 |
| 12 MockIBusEngineService::~MockIBusEngineService() { | 12 MockIBusEngineService::~MockIBusEngineService() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 void MockIBusEngineService::SetEngine(IBusEngineHandlerInterface* handler) { | 15 void MockIBusEngineService::SetEngine(IBusEngineHandlerInterface* handler) { |
| 16 } | 16 } |
| 17 | 17 |
| 18 void MockIBusEngineService::UnsetEngine() { | 18 void MockIBusEngineService::UnsetEngine(IBusEngineHandlerInterface* handler) { |
| 19 } | 19 } |
| 20 | 20 |
| 21 void MockIBusEngineService::RegisterProperties( | 21 void MockIBusEngineService::RegisterProperties( |
| 22 const IBusPropertyList& property_list) { | 22 const IBusPropertyList& property_list) { |
| 23 } | 23 } |
| 24 | 24 |
| 25 void MockIBusEngineService::UpdatePreedit(const IBusText& ibus_text, | 25 void MockIBusEngineService::UpdatePreedit(const IBusText& ibus_text, |
| 26 uint32 cursor_pos, | 26 uint32 cursor_pos, |
| 27 bool is_visible, | 27 bool is_visible, |
| 28 IBusEnginePreeditFocusOutMode mode) { | 28 IBusEnginePreeditFocusOutMode mode) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 45 uint32 state) { | 45 uint32 state) { |
| 46 } | 46 } |
| 47 | 47 |
| 48 void MockIBusEngineService::RequireSurroundingText() { | 48 void MockIBusEngineService::RequireSurroundingText() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 void MockIBusEngineService::CommitText(const std::string& text) { | 51 void MockIBusEngineService::CommitText(const std::string& text) { |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace chromeos | 54 } // namespace chromeos |
| OLD | NEW |