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

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

Issue 1749383002: Eliminate uncalled will___LiveResize and inLiveResize from RenderViewImpl through WebWidget down to… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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/WebFrameWidgetImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
index b34b41e653453379f2bd007c30460ab81122561d..4f24ed063bc42c869615d57ad344522df082ad49 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -152,12 +152,6 @@ WebSize WebFrameWidgetImpl::size()
return m_size;
}
-void WebFrameWidgetImpl::willStartLiveResize()
-{
- if (m_localRoot->frameView())
- m_localRoot->frameView()->willStartLiveResize();
-}
-
void WebFrameWidgetImpl::resize(const WebSize& newSize)
{
if (m_size == newSize)
@@ -228,12 +222,6 @@ void WebFrameWidgetImpl::setIgnoreInputEvents(bool newValue)
m_ignoreInputEvents = newValue;
}
-void WebFrameWidgetImpl::willEndLiveResize()
-{
- if (m_localRoot->frameView())
- m_localRoot->frameView()->willEndLiveResize();
-}
-
void WebFrameWidgetImpl::didEnterFullScreen()
{
// FIXME: Implement full screen for out-of-process iframes.
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.h ('k') | third_party/WebKit/Source/web/WebViewFrameWidget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698