Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 2738983004: Set an initial background for RenderFrameHosts during commit. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/frame_host/render_frame_host_manager_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8800f75c0deb66fe0dfa923a9bd057515268756a..384e4706465d208266ca137e4be548a42f2472ab 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -4073,18 +4073,6 @@ void WebContentsImpl::NotifyViewSwapped(RenderViewHost* old_host,
void WebContentsImpl::NotifyFrameSwapped(RenderFrameHost* old_host,
RenderFrameHost* new_host) {
- // Copies the background color from an old WebContents to a new one that
- // replaces it on the screen. This allows the new WebContents to use the
- // old one's background color as the starting background color, before having
- // loaded any contents. As a result, we avoid flashing white when navigating
- // from a site whith a dark background to another site with a dark background.
- if (old_host && new_host) {
- RenderWidgetHostView* old_view = old_host->GetView();
- RenderWidgetHostView* new_view = new_host->GetView();
- if (old_view && new_view)
- new_view->SetBackgroundColor(old_view->background_color());
- }
-
for (auto& observer : observers_)
observer.RenderFrameHostChanged(old_host, new_host);
}
« no previous file with comments | « content/browser/frame_host/render_frame_host_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698