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

Unified Diff: Source/core/html/HTMLMediaElement.cpp

Issue 185273002: Remove unused parameter to RenderLayerCompositor::setCompositingLayersNeedRebuild (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove visual update clls Created 6 years, 10 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 | « no previous file | Source/core/rendering/compositing/RenderLayerCompositor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.cpp
diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
index 35f8cd734ac77d7fa55aba347ec080f1add8dda1..5ced1f85324204fd73379398ccbe8b91242a42b3 100644
--- a/Source/core/html/HTMLMediaElement.cpp
+++ b/Source/core/html/HTMLMediaElement.cpp
@@ -3456,7 +3456,7 @@ void HTMLMediaElement::didBecomeFullscreenElement()
if (hasMediaControls())
mediaControls()->enteredFullscreen();
if (RuntimeEnabledFeatures::overlayFullscreenVideoEnabled() && isVideo())
- document().renderView()->compositor()->setCompositingLayersNeedRebuild(true);
+ document().renderView()->compositor()->setCompositingLayersNeedRebuild();
}
void HTMLMediaElement::willStopBeingFullscreenElement()
@@ -3464,7 +3464,7 @@ void HTMLMediaElement::willStopBeingFullscreenElement()
if (hasMediaControls())
mediaControls()->exitedFullscreen();
if (RuntimeEnabledFeatures::overlayFullscreenVideoEnabled() && isVideo())
- document().renderView()->compositor()->setCompositingLayersNeedRebuild(true);
+ document().renderView()->compositor()->setCompositingLayersNeedRebuild();
}
blink::WebLayer* HTMLMediaElement::platformLayer() const
« no previous file with comments | « no previous file | Source/core/rendering/compositing/RenderLayerCompositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698