Index: content/browser/renderer_host/render_widget_host.h |
diff --git a/content/browser/renderer_host/render_widget_host.h b/content/browser/renderer_host/render_widget_host.h |
index 1bf0ca78599650d3402b5bb6e94f1d4fe6c911e6..f27d85153f6247ffea32fec1f564e7be10f1cbc8 100644 |
--- a/content/browser/renderer_host/render_widget_host.h |
+++ b/content/browser/renderer_host/render_widget_host.h |
@@ -20,7 +20,7 @@ |
#include "ipc/ipc_channel.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputType.h" |
+#include "ui/base/ime/text_input_type.h" |
#include "ui/gfx/native_widget_types.h" |
#include "ui/gfx/rect.h" |
#include "ui/gfx/size.h" |
@@ -455,7 +455,8 @@ class RenderWidgetHost : public IPC::Channel::Listener, |
virtual void OnMsgBlur(); |
void OnMsgSetCursor(const WebCursor& cursor); |
- void OnMsgImeUpdateTextInputState(WebKit::WebTextInputType type, |
+ void OnMsgImeUpdateTextInputState(ui::TextInputType type, |
+ bool can_compose_inline, |
const gfx::Rect& caret_rect); |
void OnMsgImeCompositionRangeChanged(const ui::Range& range); |
void OnMsgImeCancelComposition(); |