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

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

Issue 2333813002: Introduce WebInputMethodController to blink (Closed)
Patch Set: Removed an unsued enum form 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..0163dff9871938ef15e720f59098e2aae8d67c27 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h
@@ -42,6 +42,7 @@
#include "web/WebExport.h"
#include "web/WebFrameImplBase.h"
#include "web/WebFrameWidgetBase.h"
+#include "web/WebInputMethodControllerImpl.h"
#include "wtf/Compiler.h"
#include "wtf/text/WTFString.h"
#include <memory>
@@ -328,6 +329,8 @@ public:
void setContextMenuNode(Node* node) { m_contextMenuNode = node; }
void clearContextMenuNode() { m_contextMenuNode.clear(); }
+ WebInputMethodControllerImpl* inputMethodController();
lfg 2016/09/14 19:20:26 const
EhsanK 2016/09/16 15:06:28 Done.
+
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