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

Unified Diff: chrome/browser/chromeos/input_method/ibus_controller.h

Issue 10399046: Remove virtual keyboard support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final rebase Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/input_method/ibus_controller.h
diff --git a/chrome/browser/chromeos/input_method/ibus_controller.h b/chrome/browser/chromeos/input_method/ibus_controller.h
index c116468c6b7855f36cc83acc01a375ef19863660..71e12f73b1cc8a285f162264fbfe2f4dd7554a52 100644
--- a/chrome/browser/chromeos/input_method/ibus_controller.h
+++ b/chrome/browser/chromeos/input_method/ibus_controller.h
@@ -65,22 +65,6 @@ class IBusController {
// Gets the latest input method property send from the system input method
// framework.
virtual const InputMethodPropertyList& GetCurrentProperties() const = 0;
-
-#if defined(USE_VIRTUAL_KEYBOARD)
- typedef std::vector<std::pair<double, double> > HandwritingStroke;
-
- // Sends a handwriting stroke to the system input method. The std::pair
- // contains x and y coordinates. (0.0, 0.0) represents the top-left corner of
- // a handwriting area, and (1.0, 1.0) does the bottom-right. For example, the
- // second stroke for U+30ED (Katakana character Ro) would be something like
- // [(0,0), (1,0), (1,1)]. stroke.size() should always be >= 2 (i.e. a single
- // dot is not allowed).
- virtual void SendHandwritingStroke(const HandwritingStroke& stroke) = 0;
-
- // Clears the last N handwriting strokes. Pass zero for clearing all strokes.
- // TODO(yusukes): Currently ibus-daemon only accepts 0 for |n_strokes|.
- virtual void CancelHandwriting(int n_strokes) = 0;
-#endif
};
} // namespace input_method
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/chromeos/input_method/ibus_controller_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698