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

Unified Diff: Source/web/WebFrameWidgetImpl.cpp

Issue 1156243002: Delete WebPluginScrollbar and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/web/ScrollbarGroup.cpp ('k') | Source/web/WebPluginContainerImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFrameWidgetImpl.cpp
diff --git a/Source/web/WebFrameWidgetImpl.cpp b/Source/web/WebFrameWidgetImpl.cpp
index efb09d35431cf0d467b456bacf930c1214bf2ffb..d029be40d5add2756afe9d2bd7b7e2cff03fc401 100644
--- a/Source/web/WebFrameWidgetImpl.cpp
+++ b/Source/web/WebFrameWidgetImpl.cpp
@@ -124,11 +124,6 @@ void WebFrameWidgetImpl::willStartLiveResize()
{
if (m_localRoot->frameView())
m_localRoot->frameView()->willStartLiveResize();
-
- LocalFrame* frame = m_localRoot->frame();
- WebPluginContainerImpl* pluginContainer = WebLocalFrameImpl::pluginContainerFromFrame(frame);
- if (pluginContainer)
- pluginContainer->willStartLiveResize();
}
void WebFrameWidgetImpl::resize(const WebSize& newSize)
@@ -205,11 +200,6 @@ void WebFrameWidgetImpl::willEndLiveResize()
{
if (m_localRoot->frameView())
m_localRoot->frameView()->willEndLiveResize();
-
- LocalFrame* frame = m_localRoot->frame();
- WebPluginContainerImpl* pluginContainer = WebLocalFrameImpl::pluginContainerFromFrame(frame);
- if (pluginContainer)
- pluginContainer->willEndLiveResize();
}
void WebFrameWidgetImpl::willEnterFullScreen()
« no previous file with comments | « Source/web/ScrollbarGroup.cpp ('k') | Source/web/WebPluginContainerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698