| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index e7711125b7bc084dda4a140cb42d29b232c34fd6..d9ab1d7ce3435787496eb7d48d9665d3d0235f00 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -1824,12 +1824,10 @@ void WebViewImpl::paintCompositedDeprecated(WebCanvas* canvas, const WebRect& re
|
| }
|
| #endif
|
|
|
| -bool WebViewImpl::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback* callback)
|
| +void WebViewImpl::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncCallback* callback)
|
| {
|
| - if (!isAcceleratedCompositingActive())
|
| - return false;
|
| + ASSERT(isAcceleratedCompositingActive());
|
| m_layerTreeView->compositeAndReadbackAsync(callback);
|
| - return true;
|
| }
|
|
|
| bool WebViewImpl::isTrackingRepaints() const
|
|
|