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

Unified Diff: third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp

Issue 2886113002: Introduce WebPluginContainerBase to abstract WebPluginContainerImpl. (Closed)
Patch Set: Rebase Created 3 years, 7 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/WebInputMethodControllerImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
index c26b860f0cffcc7377c6ca42ef935300379d1eef..b1ed72e6131dbd161b54a432dfae687ec0b34b55 100644
--- a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp
@@ -13,6 +13,7 @@
#include "core/editing/FrameSelection.h"
#include "core/editing/InputMethodController.h"
#include "core/editing/PlainTextRange.h"
+#include "core/exported/WebPluginContainerBase.h"
#include "core/frame/LocalFrame.h"
#include "core/page/FocusController.h"
#include "core/page/Page.h"
@@ -21,7 +22,6 @@
#include "public/web/WebPlugin.h"
#include "public/web/WebRange.h"
#include "web/WebLocalFrameImpl.h"
-#include "web/WebPluginContainerImpl.h"
namespace blink {
@@ -158,7 +158,7 @@ InputMethodController& WebInputMethodControllerImpl::GetInputMethodController()
WebPlugin* WebInputMethodControllerImpl::FocusedPluginIfInputMethodSupported()
const {
- WebPluginContainerImpl* container =
+ WebPluginContainerBase* container =
WebLocalFrameImpl::CurrentPluginContainer(GetFrame());
if (container && container->SupportsInputMethod())
return container->Plugin();

Powered by Google App Engine
This is Rietveld 408576698