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

Side by Side Diff: chrome/browser/chromeos/cros/mock_input_method_library.h

Issue 6902067: Add two functions for handwriting: SendHandwritingStrokes and CancelHandwriting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add DEPS for libcros, Rebase. Created 9 years, 7 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 | « chrome/browser/chromeos/cros/input_method_library.cc ('k') | tools/cros.DEPS/DEPS » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_
6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ 6 #define CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 19 matching lines...) Expand all
30 MOCK_METHOD3(SetImeConfig, bool(const std::string&, const std::string&, 30 MOCK_METHOD3(SetImeConfig, bool(const std::string&, const std::string&,
31 const ImeConfigValue&)); 31 const ImeConfigValue&));
32 MOCK_CONST_METHOD0(previous_input_method, const InputMethodDescriptor&(void)); 32 MOCK_CONST_METHOD0(previous_input_method, const InputMethodDescriptor&(void));
33 MOCK_CONST_METHOD0(current_input_method, const InputMethodDescriptor&(void)); 33 MOCK_CONST_METHOD0(current_input_method, const InputMethodDescriptor&(void));
34 MOCK_CONST_METHOD0(current_ime_properties, const ImePropertyList&(void)); 34 MOCK_CONST_METHOD0(current_ime_properties, const ImePropertyList&(void));
35 MOCK_METHOD1(GetKeyboardOverlayId, std::string(const std::string&)); 35 MOCK_METHOD1(GetKeyboardOverlayId, std::string(const std::string&));
36 MOCK_METHOD0(StartInputMethodDaemon, bool(void)); 36 MOCK_METHOD0(StartInputMethodDaemon, bool(void));
37 MOCK_METHOD0(StopInputMethodDaemon, void(void)); 37 MOCK_METHOD0(StopInputMethodDaemon, void(void));
38 MOCK_METHOD1(SetDeferImeStartup, void(bool)); 38 MOCK_METHOD1(SetDeferImeStartup, void(bool));
39 MOCK_METHOD1(SetEnableAutoImeShutdown, void(bool)); 39 MOCK_METHOD1(SetEnableAutoImeShutdown, void(bool));
40 MOCK_METHOD1(SendHandwritingStroke, void(const HandwritingStroke&));
41 MOCK_METHOD1(CancelHandwriting, void(int));
40 }; 42 };
41 43
42 } // namespace chromeos 44 } // namespace chromeos
43 45
44 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_ 46 #endif // CHROME_BROWSER_CHROMEOS_CROS_MOCK_INPUT_METHOD_LIBRARY_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/input_method_library.cc ('k') | tools/cros.DEPS/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698