Index: chrome/browser/chromeos/input_method/ibus_ui_controller.h |
diff --git a/chrome/browser/chromeos/input_method/ibus_ui_controller.h b/chrome/browser/chromeos/input_method/ibus_ui_controller.h |
index 77966d3327de9f48e2567c146114b0494522d6df..b6c6f1185698008b30e75ad210ee00b5e5f7faa8 100644 |
--- a/chrome/browser/chromeos/input_method/ibus_ui_controller.h |
+++ b/chrome/browser/chromeos/input_method/ibus_ui_controller.h |
@@ -23,6 +23,9 @@ namespace input_method { |
// A key for attaching the |ibus_service_panel_| object to |ibus_|. |
const char kPanelObjectKey[] = "panel-object"; |
+class InputMethodDescriptor; |
+typedef std::vector<InputMethodDescriptor> InputMethodDescriptors; |
Jun Mukai
2012/04/16 06:57:53
Can we add this typedef here? The definition of I
|
+ |
// The struct represents the input method lookup table (list of candidates). |
// Used for InputMethodUpdateLookupTableMonitorFunction. |
struct InputMethodLookupTable { |
@@ -141,6 +144,9 @@ class IBusUiController { |
virtual void NotifyPageDown() = 0; |
}; |
+bool IsActiveForTesting(const std::string& input_method_id, |
+ const InputMethodDescriptors* descriptors); |
+ |
} // namespace input_method |
} // namespace chromeos |