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

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

Issue 6905053: Add 2 Extension APIs for handwriting: experimental.input.sendHandritingStroke and cancelHandWriting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fix 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
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 20 matching lines...) Expand all
31 const ImeConfigValue&)); 31 const ImeConfigValue&));
32 MOCK_CONST_METHOD0(previous_input_method, InputMethodDescriptor(void)); 32 MOCK_CONST_METHOD0(previous_input_method, InputMethodDescriptor(void));
33 MOCK_CONST_METHOD0(current_input_method, InputMethodDescriptor(void)); 33 MOCK_CONST_METHOD0(current_input_method, 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&)); 40 MOCK_METHOD1(SendHandwritingStroke, void(const HandwritingStroke&));
41 MOCK_METHOD1(CancelHandwriting, void(int)); 41 MOCK_METHOD1(CancelHandwritingStrokes, void(int));
42 }; 42 };
43 43
44 } // namespace chromeos 44 } // namespace chromeos
45 45
46 #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') | chrome/browser/extensions/extension_function_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698