| 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.
|
|
|