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

Unified Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 2044743002: Remove unused argument from WebContentsImpl::IsFullscreenForCurrentTab. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
Index: content/browser/renderer_host/render_widget_host_view_aura.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
index 6de1e259c6e4ddf82a3759cb3bd8df12f74ce958..e721b7eca28e7329c15074bfcb27ab09382c1c95 100644
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
@@ -2899,7 +2899,7 @@ SkColor RenderWidgetHostViewAura::DelegatedFrameHostGetGutterColor(
// When making an element on the page fullscreen the element's background
// may not match the page's, so use black as the gutter color to avoid
// flashes of brighter colors during the transition.
- if (host_->delegate() && host_->delegate()->IsFullscreenForCurrentTab(host_))
+ if (host_->delegate() && host_->delegate()->IsFullscreenForCurrentTab())
return SK_ColorBLACK;
return color;
}

Powered by Google App Engine
This is Rietveld 408576698