Index: third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp |
index c876be88000948aa001fb1bebcf4a5e7a385e634..3379cd7056db4c23901db604446b83ea5637d003 100644 |
--- a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp |
@@ -130,6 +130,14 @@ bool WebInputMethodControllerImpl::commitText(const WebString& text, |
return inputMethodController().commitText(text, relativeCaretPosition); |
} |
+WebTextInputInfo WebInputMethodControllerImpl::textInputInfo() { |
+ return frame()->inputMethodController().textInputInfo(); |
+} |
+ |
+WebTextInputType WebInputMethodControllerImpl::textInputType() { |
+ return frame()->inputMethodController().textInputType(); |
+} |
+ |
LocalFrame* WebInputMethodControllerImpl::frame() const { |
return m_webLocalFrame->frame(); |
} |