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

Unified Diff: cc/test/layer_tree_pixel_test.cc

Issue 1821863002: Hook up ui::Compositor to Display's BeginFrameSource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Really revert task runner changes Created 4 years, 8 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/test/layer_tree_pixel_test.cc
diff --git a/cc/test/layer_tree_pixel_test.cc b/cc/test/layer_tree_pixel_test.cc
index 82045a42c43dd06e91333a64afef477faebc24f2..2a314875d458bd514d79b2517242dafa903aabc0 100644
--- a/cc/test/layer_tree_pixel_test.cc
+++ b/cc/test/layer_tree_pixel_test.cc
@@ -48,15 +48,15 @@ scoped_ptr<OutputSurface> LayerTreePixelTest::CreateOutputSurface() {
new PixelTestSoftwareOutputDevice);
software_output_device->set_surface_expansion_size(
surface_expansion_size);
- output_surface = make_scoped_ptr(
- new PixelTestOutputSurface(std::move(software_output_device)));
+ output_surface = make_scoped_ptr(new PixelTestOutputSurface(
+ std::move(software_output_device), nullptr));
break;
}
case PIXEL_TEST_GL: {
bool flipped_output_surface = false;
output_surface = make_scoped_ptr(new PixelTestOutputSurface(
new TestInProcessContextProvider, new TestInProcessContextProvider,
- flipped_output_surface));
+ flipped_output_surface, nullptr));
break;
}
}

Powered by Google App Engine
This is Rietveld 408576698