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

Unified Diff: chrome/browser/chromeos/cros/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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/input_method_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/input_method_library.h
diff --git a/chrome/browser/chromeos/cros/input_method_library.h b/chrome/browser/chromeos/cros/input_method_library.h
index e42cbbdc3d92054699e0e21061b4808b78389b59..3f44e6a0944b6aed3fe2c8adbde41b710f684bce 100644
--- a/chrome/browser/chromeos/cros/input_method_library.h
+++ b/chrome/browser/chromeos/cros/input_method_library.h
@@ -121,6 +121,13 @@ class InputMethodLibrary {
// engines are removed.
virtual void SetEnableAutoImeShutdown(bool enable) = 0;
+ // Sends a handwriting stroke to libcros. See chromeos::SendHandwritingStroke
+ // for details.
+ virtual void SendHandwritingStroke(const HandwritingStroke& stroke) = 0;
+
+ // Clears last N handwriting strokes in libcros. See
+ // chromeos::CancelHandwriting for details.
+ virtual void CancelHandwriting(int n_strokes) = 0;
virtual const InputMethodDescriptor& previous_input_method() const = 0;
virtual const InputMethodDescriptor& current_input_method() const = 0;
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/input_method_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698