| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index a070e5041f681efab4e87a51916b0604875b92c4..a8272c95b7f7de2c04050036551078c3a6a195f2 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -2833,6 +2833,14 @@ void WebViewImpl::setDeviceScaleFactor(float scaleFactor)
|
| updateLayerTreeDeviceScaleFactor();
|
| }
|
|
|
| +void WebViewImpl::deviceColorProfileChanged(const char* profile, size_t size)
|
| +{
|
| + if (!page())
|
| + return;
|
| +
|
| + page()->deviceColorProfileChanged(profile, size);
|
| +}
|
| +
|
| void WebViewImpl::enableAutoResizeMode(const WebSize& minSize, const WebSize& maxSize)
|
| {
|
| m_shouldAutoResize = true;
|
|
|