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

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

Issue 150203015: Split out InputMethodMenuManager from InputMethodManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make clang happy Created 6 years, 10 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_engine.h
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.h b/chrome/browser/chromeos/input_method/input_method_engine.h
index ce817d389c31f01755e3231e2b15beb8acbaf0e9..64dd8e292e3aa7804cc3bb2b7dcdcd4fe13eb613 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.h
+++ b/chrome/browser/chromeos/input_method/input_method_engine.h
@@ -17,12 +17,17 @@ class CandidateWindow;
class KeyEvent;
} // namespace ui
+namespace ash {
+namespace ime {
+struct InputMethodMenuItem;
+} // namespace ime
+} // namespace ash
+
namespace chromeos {
class CompositionText;
namespace input_method {
-struct InputMethodProperty;
struct KeyEventHandle;
} // namespace input_method
@@ -95,9 +100,9 @@ class InputMethodEngine : public InputMethodEngineInterface {
virtual void HideInputView() OVERRIDE;
private:
- // Converts MenuItem to InputMethodProperty.
+ // Converts MenuItem to InputMethodMenuItem.
void MenuItemToProperty(const MenuItem& item,
- input_method::InputMethodProperty* property);
+ ash::ime::InputMethodMenuItem* property);
// Descriptor of this input method.
input_method::InputMethodDescriptor descriptor_;

Powered by Google App Engine
This is Rietveld 408576698