Index: Source/web/WebViewImpl.cpp |
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp |
index bf1d7a715e24c1f471fe485bb9f26116565e8ff7..ed07e1e63ccf9c5e71dea88a6132756592f240f8 100644 |
--- a/Source/web/WebViewImpl.cpp |
+++ b/Source/web/WebViewImpl.cpp |
@@ -2840,6 +2840,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; |