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

Unified Diff: cc/surfaces/compositor_frame_sink_support_unittest.cc

Issue 2696743002: Prepare CompositorFrameSinkSupport To Be Used By DirectCompositorFrameSink (Closed)
Patch Set: rebase android Created 3 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/surfaces/compositor_frame_sink_support_unittest.cc
diff --git a/cc/surfaces/compositor_frame_sink_support_unittest.cc b/cc/surfaces/compositor_frame_sink_support_unittest.cc
index 7984c87202b7243350ea877955982b823240d015..8738f17d7baa78c075a12e6fef747329da20a726 100644
--- a/cc/surfaces/compositor_frame_sink_support_unittest.cc
+++ b/cc/surfaces/compositor_frame_sink_support_unittest.cc
@@ -137,13 +137,19 @@ class CompositorFrameSinkSupportTest : public testing::Test,
surface_manager_.SetDependencyTracker(std::move(dependency_tracker));
supports_.push_back(base::MakeUnique<CompositorFrameSinkSupport>(
this, &surface_manager_, kParentFrameSink,
- false /* submits_to_display_compositor */));
+ false /* submits_to_display_compositor */,
+ true /* handles_frame_sink_id_invalidation */,
+ true /* needs_sync_points */));
supports_.push_back(base::MakeUnique<CompositorFrameSinkSupport>(
this, &surface_manager_, kChildFrameSink1,
- false /* submits_to_display_compositor */));
+ false /* submits_to_display_compositor */,
+ true /* handles_frame_sink_id_invalidation */,
+ true /* needs_sync_points */));
supports_.push_back(base::MakeUnique<CompositorFrameSinkSupport>(
this, &surface_manager_, kChildFrameSink2,
- false /* submits_to_display_compositor */));
+ false /* submits_to_display_compositor */,
+ true /* handles_frame_sink_id_invalidation */,
+ true /* needs_sync_points */));
}
void TearDown() override {

Powered by Google App Engine
This is Rietveld 408576698