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

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

Issue 10907196: Add the ability to filter out extension IMEs from the language settings page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes Created 8 years, 3 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/input_method_manager.h
diff --git a/chrome/browser/chromeos/input_method/input_method_manager.h b/chrome/browser/chromeos/input_method/input_method_manager.h
index c93d53c155e39f3b203511814f2b6ebb0d7dbe0a..7d800232ba3a8dcbc80152f6a869b14aa314f615 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager.h
+++ b/chrome/browser/chromeos/input_method/input_method_manager.h
@@ -129,6 +129,12 @@ class InputMethodManager {
// Removes an input method extension.
virtual void RemoveInputMethodExtension(const std::string& id) = 0;
+ // Return a list of descriptors for all Input Method Extensions.
Seigo Nonaka 2012/09/13 18:25:21 nit: Returns
Zachary Kuznia 2012/09/19 10:15:50 Done.
+ virtual void GetInputMethodExtensions(InputMethodDescriptors* result) = 0;
+
+ // Sets the list of extension IME ids which should not be enabled.
+ virtual void SetFilteredExtensionImes(std::vector<std::string>* ids) = 0;
+
// Gets the descriptor of the input method which is currently selected.
virtual InputMethodDescriptor GetCurrentInputMethod() const = 0;

Powered by Google App Engine
This is Rietveld 408576698