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

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

Issue 2333813002: Introduce WebInputMethodController to blink (Closed)
Patch Set: Moved ConfirmCompositionBehavior to WebInputMethodController Created 4 years, 3 months 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 595f4153a21d31f3ce8da041b331cb01b07606d5..b234c956ccdfe68d3fd9d1a2ad81ba2b6484c817 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -60,6 +60,7 @@ class WebDataSourceImpl;
class WebDevToolsAgentImpl;
class WebDevToolsFrontendImpl;
class WebFrameClient;
+class WebInputMethodControllerImpl;
class WebNode;
class WebPerformance;
class WebPlugin;
@@ -328,6 +329,8 @@ public:
void setContextMenuNode(Node* node) { m_contextMenuNode = node; }
void clearContextMenuNode() { m_contextMenuNode.clear(); }
+ WebInputMethodControllerImpl* inputMethodController() const;
+
DECLARE_TRACE();
private:
@@ -388,6 +391,8 @@ private:
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().

Powered by Google App Engine
This is Rietveld 408576698