Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
index e6c269099f8aafcbe658fe872d47ce1cf4599f28..98ae6fc199d21b7223d7a1b965022eaad084d87e 100644 |
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp |
@@ -41,7 +41,6 @@ |
#include "core/events/UIEventWithKeyState.h" |
#include "core/events/WebInputEventConversion.h" |
#include "core/exported/WebFileChooserCompletionImpl.h" |
-#include "core/exported/WebPluginContainerBase.h" |
#include "core/exported/WebViewBase.h" |
#include "core/frame/FrameView.h" |
#include "core/frame/Settings.h" |
@@ -123,6 +122,7 @@ |
#include "web/PopupMenuImpl.h" |
#include "web/WebFrameWidgetImpl.h" |
#include "web/WebLocalFrameImpl.h" |
+#include "web/WebPluginContainerImpl.h" |
#include "web/WebRemoteFrameImpl.h" |
#include "web/WebSettingsImpl.h" |
@@ -658,8 +658,8 @@ |
if (object && object->IsLayoutPart()) { |
PluginView* plugin_view = ToLayoutPart(object)->Plugin(); |
if (plugin_view && plugin_view->IsPluginContainer()) { |
- WebPluginContainerBase* plugin = |
- ToWebPluginContainerBase(plugin_view); |
+ WebPluginContainerImpl* plugin = |
+ ToWebPluginContainerImpl(plugin_view); |
url = plugin->Plugin()->LinkAtPosition( |
result.RoundedPointInInnerNodeFrame()); |
} |