| Index: ui/aura/desktop_host.h
|
| diff --git a/ui/aura/desktop_host.h b/ui/aura/desktop_host.h
|
| index f72fc52bb4dbba1b2314838e7a98ef83462323db..99b70d1ca05831e6e5b028f9a8d1acb7957a3ad5 100644
|
| --- a/ui/aura/desktop_host.h
|
| +++ b/ui/aura/desktop_host.h
|
| @@ -10,6 +10,10 @@
|
| #include "ui/aura/cursor.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| +namespace ui {
|
| +class InputMethod;
|
| +}
|
| +
|
| namespace gfx {
|
| class Point;
|
| class Rect;
|
| @@ -64,6 +68,9 @@ class DesktopHost : public MessageLoop::Dispatcher {
|
|
|
| // Posts |native_event| to the platform's event queue.
|
| virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0;
|
| +
|
| + // Gets the input method for the desktop.
|
| + virtual ui::InputMethod* GetInputMethod() = 0;
|
| };
|
|
|
| } // namespace aura
|
|
|