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

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

Issue 2418173002: Fix HTML5 video blurry (Closed)
Patch Set: add dcheck Created 4 years, 2 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/delegated_frame_host.cc
diff --git a/content/browser/renderer_host/delegated_frame_host.cc b/content/browser/renderer_host/delegated_frame_host.cc
index 3fe2150bf2ebcadf027027b65193de68fcf892ff..ca5a922a831e9d3c754de51018ace433c963c75a 100644
--- a/content/browser/renderer_host/delegated_frame_host.cc
+++ b/content/browser/renderer_host/delegated_frame_host.cc
@@ -384,7 +384,8 @@ void DelegatedFrameHost::AttemptFrameSubscriberCapture(
if (subscriber_texture.get()) {
request->SetTextureMailbox(cc::TextureMailbox(
subscriber_texture->mailbox(), subscriber_texture->sync_token(),
- subscriber_texture->target()));
+ subscriber_texture->target(), current_frame_size_in_dip_, false,
+ false));
}
if (surface_factory_.get()) {

Powered by Google App Engine
This is Rietveld 408576698