Index: third_party/WebKit/Source/web/WebViewImpl.h |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h |
index 0df53ca898e7dba9636f5ff20929863921d80750..e08534ed6d86bce07e50d55aeaf7ef49b4da6ccd 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.h |
+++ b/third_party/WebKit/Source/web/WebViewImpl.h |
@@ -152,8 +152,6 @@ class WEB_EXPORT WebViewImpl final |
void mouseCaptureLost() override; |
void setFocus(bool enable) override; |
WebRange compositionRange() override; |
- WebTextInputInfo textInputInfo() override; |
- WebTextInputType textInputType() override; |
WebColor backgroundColor() const override; |
WebPagePopup* pagePopup() const override; |
bool selectionBounds(WebRect& anchor, WebRect& focus) const override; |
@@ -500,9 +498,10 @@ class WEB_EXPORT WebViewImpl final |
ChromeClientImpl& chromeClient() const { return *m_chromeClientImpl.get(); } |
- // Returns the currently active WebInputMethodController which the one |
- // corresponding to the focused frame. It will return nullptr if there are |
- // none or |m_imeAcceptEvents| is false. |
+ // Returns the currently active WebInputMethodController which is the one |
+ // corresponding to the focused frame. It will return nullptr if there is no |
+ // focused frame, or if the there is one but it belongs to a different local |
+ // root. |
WebInputMethodControllerImpl* getActiveWebInputMethodController() const; |
private: |