| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index dd1a2a03a9dc7e9550e348bfdf5f574da71b05f4..182bc13a7246f269f6b21902d93874c0ae72e4fe 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -3368,6 +3368,16 @@ WebSize WebViewImpl::contentsPreferredMinimumSize()
|
| return IntSize(widthScaled, heightScaled);
|
| }
|
|
|
| +void WebViewImpl::setCompositedDisplayList(WebCompositedDisplayList* compositedDisplayList)
|
| +{
|
| + m_compositedDisplayList = adoptPtr(compositedDisplayList);
|
| +}
|
| +
|
| +WebCompositedDisplayList* WebViewImpl::compositedDisplayList()
|
| +{
|
| + return m_compositedDisplayList.get();
|
| +}
|
| +
|
| void WebViewImpl::enableViewport()
|
| {
|
| settings()->setViewportEnabled(true);
|
|
|