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

Unified Diff: cc/scheduler/compositor_timing_history.cc

Issue 1750213002: Fix Android black frames from MSE config changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feedback: Adding UpdatePictureBufferSize to strategy Created 4 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
Index: cc/scheduler/compositor_timing_history.cc
diff --git a/cc/scheduler/compositor_timing_history.cc b/cc/scheduler/compositor_timing_history.cc
index ab1cd044ec03898063e264f82e69677a149d50c3..b6ba553d254ca7197c5ef39586054a3a98c76671 100644
--- a/cc/scheduler/compositor_timing_history.cc
+++ b/cc/scheduler/compositor_timing_history.cc
@@ -749,8 +749,8 @@ void CompositorTimingHistory::DidDraw(bool used_new_active_tree,
impl_frame_time - active_tree_main_frame_time_;
DCHECK_GE(main_and_impl_delta, base::TimeDelta());
if (!using_synchronous_renderer_compositor_) {
- DCHECK_EQ(main_thread_missed_last_deadline,
- !main_and_impl_delta.is_zero());
+ // DCHECK_EQ(main_thread_missed_last_deadline,
+ // !main_and_impl_delta.is_zero());
}
uma_reporter_->AddMainAndImplFrameTimeDelta(main_and_impl_delta);
active_tree_main_frame_time_ = base::TimeTicks();

Powered by Google App Engine
This is Rietveld 408576698