Index: third_party/WebKit/Source/web/WebLocalFrameImpl.h |
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
index 13098e7693679fb9a9ca8299ca01692a3d246f58..631f88c12549c7da404a1ef980d4ec8faf8678a3 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
@@ -62,6 +62,7 @@ class WebDataSourceImpl; |
class WebDevToolsAgentImpl; |
class WebDevToolsFrontendImpl; |
class WebFrameClient; |
+class WebInputMethodControllerImpl; |
class WebNode; |
class WebPerformance; |
class WebPlugin; |
@@ -404,6 +405,8 @@ class WEB_EXPORT WebLocalFrameImpl final |
void setContextMenuNode(Node* node) { m_contextMenuNode = node; } |
void clearContextMenuNode() { m_contextMenuNode.clear(); } |
+ WebInputMethodControllerImpl* inputMethodController() const; |
+ |
DECLARE_TRACE(); |
private: |
@@ -468,6 +471,8 @@ class WEB_EXPORT WebLocalFrameImpl final |
Member<Node> m_contextMenuNode; |
+ std::unique_ptr<WebInputMethodControllerImpl> m_inputMethodController; |
+ |
// Oilpan: WebLocalFrameImpl must remain alive until close() is called. |
// Accomplish that by keeping a self-referential Persistent<>. It is |
// cleared upon close(). |