Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: chromeos/dbus/ibus/mock_ibus_engine_service.cc

Issue 14404007: Fix crash on extension IME reloading on Linux Desktop with chromeos=1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/dbus/ibus/mock_ibus_engine_service.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chromeos/dbus/ibus/mock_ibus_engine_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698