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() { |
19 } | 19 } |
20 | 20 |
21 void MockIBusEngineService::RegisterProperties( | 21 void MockIBusEngineService::RegisterProperties( |
22 const ibus::IBusPropertyList& property_list) { | 22 const IBusPropertyList& property_list) { |
23 } | 23 } |
24 | 24 |
25 void MockIBusEngineService::UpdatePreedit(const ibus::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) { |
29 } | 29 } |
30 | 30 |
31 void MockIBusEngineService::UpdateAuxiliaryText(const ibus::IBusText& ibus_text, | 31 void MockIBusEngineService::UpdateAuxiliaryText(const IBusText& ibus_text, |
32 bool is_visible) { | 32 bool is_visible) { |
33 } | 33 } |
34 | 34 |
35 void MockIBusEngineService::UpdateLookupTable( | 35 void MockIBusEngineService::UpdateLookupTable( |
36 const ibus::IBusLookupTable& lookup_table, | 36 const IBusLookupTable& lookup_table, |
37 bool is_visible) { | 37 bool is_visible) { |
38 } | 38 } |
39 | 39 |
40 void MockIBusEngineService::UpdateProperty(const ibus::IBusProperty& property) { | 40 void MockIBusEngineService::UpdateProperty(const IBusProperty& property) { |
41 } | 41 } |
42 | 42 |
43 void MockIBusEngineService::ForwardKeyEvent(uint32 keyval, | 43 void MockIBusEngineService::ForwardKeyEvent(uint32 keyval, |
44 uint32 keycode, | 44 uint32 keycode, |
45 uint32 state) { | 45 uint32 state) { |
46 } | 46 } |
47 | 47 |
48 void MockIBusEngineService::RequireSurroundingText() { | 48 void MockIBusEngineService::RequireSurroundingText() { |
49 } | 49 } |
50 | 50 |
51 } // namespace chromeos | 51 } // namespace chromeos |
OLD | NEW |