| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index 2913251b1fae28a3591d004907f57d34b1fdf65f..d3039f99bc06a58b3ebb82c351da83002c21677c 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -450,6 +450,12 @@ void FrameLoaderClientImpl::dispatchDidFirstVisuallyNonEmptyLayout()
|
| m_webFrame->client()->didFirstVisuallyNonEmptyLayout(m_webFrame);
|
| }
|
|
|
| +void FrameLoaderClientImpl::dispatchDidChangeBrandColor()
|
| +{
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->didChangeBrandColor(m_webFrame);
|
| +}
|
| +
|
| NavigationPolicy FrameLoaderClientImpl::decidePolicyForNavigation(const ResourceRequest& request, DocumentLoader* loader, NavigationPolicy policy)
|
| {
|
| if (!m_webFrame->client())
|
|
|