| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 8b5d7081ff3f481dad0f25477ddefce837e767dd..01750649983555082e328f84842bc12bf79a7ea1 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -506,8 +506,8 @@ bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host,
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_PluginCrashed, OnPluginCrashed)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_DomOperationResponse,
|
| OnDomOperationResponse)
|
| - IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeBrandColor,
|
| - OnBrandColorChanged)
|
| + IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeThemeColor,
|
| + OnThemeColorChanged)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishDocumentLoad,
|
| OnDocumentLoadedInFrame)
|
| IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishLoad, OnDidFinishLoad)
|
| @@ -2544,9 +2544,9 @@ bool WebContentsImpl::CanOverscrollContent() const {
|
| return false;
|
| }
|
|
|
| -void WebContentsImpl::OnBrandColorChanged(SkColor brand_color) {
|
| +void WebContentsImpl::OnThemeColorChanged(SkColor theme_color) {
|
| FOR_EACH_OBSERVER(WebContentsObserver, observers_,
|
| - DidChangeBrandColor(brand_color));
|
| + DidChangeThemeColor(theme_color));
|
| }
|
|
|
| void WebContentsImpl::OnDidLoadResourceFromMemoryCache(
|
|
|