| Index: cc/surfaces/surfaces_pixeltest.cc
|
| diff --git a/cc/surfaces/surfaces_pixeltest.cc b/cc/surfaces/surfaces_pixeltest.cc
|
| index bd9f56c7556c309ce63329ca6017f78665b80ef6..5018e2facfecfda16e2645b64b350fd34b1eb0d1 100644
|
| --- a/cc/surfaces/surfaces_pixeltest.cc
|
| +++ b/cc/surfaces/surfaces_pixeltest.cc
|
| @@ -87,7 +87,7 @@ TEST_F(SurfacesPixelTest, DrawSimpleFrame) {
|
|
|
| SurfaceId root_surface_id = allocator_.GenerateId();
|
| factory_.Create(root_surface_id, device_viewport_size_);
|
| - factory_.SubmitFrame(root_surface_id, root_frame.Pass());
|
| + factory_.SubmitFrame(root_surface_id, root_frame.Pass(), base::Closure());
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
| std::set<SurfaceId> surface_set;
|
| @@ -142,7 +142,7 @@ TEST_F(SurfacesPixelTest, DrawSimpleAggregatedFrame) {
|
| scoped_ptr<CompositorFrame> root_frame(new CompositorFrame);
|
| root_frame->delegated_frame_data = delegated_frame_data.Pass();
|
|
|
| - factory_.SubmitFrame(root_surface_id, root_frame.Pass());
|
| + factory_.SubmitFrame(root_surface_id, root_frame.Pass(), base::Closure());
|
| }
|
|
|
| {
|
| @@ -169,7 +169,7 @@ TEST_F(SurfacesPixelTest, DrawSimpleAggregatedFrame) {
|
| scoped_ptr<CompositorFrame> child_frame(new CompositorFrame);
|
| child_frame->delegated_frame_data = delegated_frame_data.Pass();
|
|
|
| - factory_.SubmitFrame(child_surface_id, child_frame.Pass());
|
| + factory_.SubmitFrame(child_surface_id, child_frame.Pass(), base::Closure());
|
| }
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
| @@ -240,7 +240,7 @@ TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) {
|
| scoped_ptr<CompositorFrame> root_frame(new CompositorFrame);
|
| root_frame->delegated_frame_data = delegated_frame_data.Pass();
|
|
|
| - factory_.SubmitFrame(root_surface_id, root_frame.Pass());
|
| + factory_.SubmitFrame(root_surface_id, root_frame.Pass(), base::Closure());
|
| }
|
|
|
| {
|
| @@ -275,7 +275,7 @@ TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) {
|
| scoped_ptr<CompositorFrame> child_frame(new CompositorFrame);
|
| child_frame->delegated_frame_data = delegated_frame_data.Pass();
|
|
|
| - factory_.SubmitFrame(left_child_id, child_frame.Pass());
|
| + factory_.SubmitFrame(left_child_id, child_frame.Pass(), base::Closure());
|
| }
|
|
|
| {
|
| @@ -310,7 +310,7 @@ TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) {
|
| scoped_ptr<CompositorFrame> child_frame(new CompositorFrame);
|
| child_frame->delegated_frame_data = delegated_frame_data.Pass();
|
|
|
| - factory_.SubmitFrame(right_child_id, child_frame.Pass());
|
| + factory_.SubmitFrame(right_child_id, child_frame.Pass(), base::Closure());
|
| }
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
|
|