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(); |