Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1556)

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.h

Issue 2333813002: Introduce WebInputMethodController to blink (Closed)
Patch Set: Rebased Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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().
« no previous file with comments | « third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698