| Index: sky/engine/web/WebLocalFrameImpl.cpp
|
| diff --git a/sky/engine/web/WebLocalFrameImpl.cpp b/sky/engine/web/WebLocalFrameImpl.cpp
|
| index be3bf891747b7c13d1cb4a5cd749e5b0fa2aa14a..fbea36877d6e5bf7203be21771a0e830bc949e92 100644
|
| --- a/sky/engine/web/WebLocalFrameImpl.cpp
|
| +++ b/sky/engine/web/WebLocalFrameImpl.cpp
|
| @@ -640,12 +640,8 @@ void WebLocalFrameImpl::createFrameView()
|
| ASSERT(frame()); // If frame() doesn't exist, we probably didn't init properly.
|
|
|
| WebViewImpl* webView = viewImpl();
|
| - webView->suppressInvalidations(true);
|
| -
|
| frame()->createView(webView->size(), webView->baseBackgroundColor(), webView->isTransparent());
|
| frame()->view()->setInputEventsTransformForEmulation(m_inputEventsOffsetForEmulation, m_inputEventsScaleFactorForEmulation);
|
| -
|
| - webView->suppressInvalidations(false);
|
| }
|
|
|
| WebLocalFrameImpl* WebLocalFrameImpl::fromFrame(LocalFrame* frame)
|
| @@ -685,11 +681,4 @@ void WebLocalFrameImpl::setInputEventsTransformForEmulation(const IntSize& offse
|
| frame()->view()->setInputEventsTransformForEmulation(m_inputEventsOffsetForEmulation, m_inputEventsScaleFactorForEmulation);
|
| }
|
|
|
| -void WebLocalFrameImpl::invalidateAll() const
|
| -{
|
| - ASSERT(frame() && frame()->view());
|
| - FrameView* view = frame()->view();
|
| - view->invalidateRect(view->frameRect());
|
| -}
|
| -
|
| } // namespace blink
|
|
|