| Index: cc/surfaces/surfaces_pixeltest.cc
|
| diff --git a/cc/surfaces/surfaces_pixeltest.cc b/cc/surfaces/surfaces_pixeltest.cc
|
| index bdc7c4013ef34cda0f1a3e3273f660520a7a272c..1e8166fe6358fcacb734b2788cbc05050d00a523 100644
|
| --- a/cc/surfaces/surfaces_pixeltest.cc
|
| +++ b/cc/surfaces/surfaces_pixeltest.cc
|
| @@ -90,9 +90,8 @@ TEST_F(SurfacesPixelTest, DrawSimpleFrame) {
|
| factory_.SubmitFrame(root_surface_id, root_frame.Pass(), base::Closure());
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
| - std::set<SurfaceId> surface_set;
|
| scoped_ptr<CompositorFrame> aggregated_frame =
|
| - aggregator.Aggregate(root_surface_id, &surface_set);
|
| + aggregator.Aggregate(root_surface_id);
|
| factory_.Destroy(root_surface_id);
|
|
|
| bool discard_alpha = false;
|
| @@ -173,9 +172,8 @@ TEST_F(SurfacesPixelTest, DrawSimpleAggregatedFrame) {
|
| }
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
| - std::set<SurfaceId> surface_set;
|
| scoped_ptr<CompositorFrame> aggregated_frame =
|
| - aggregator.Aggregate(root_surface_id, &surface_set);
|
| + aggregator.Aggregate(root_surface_id);
|
|
|
| bool discard_alpha = false;
|
| ExactPixelComparator pixel_comparator(discard_alpha);
|
| @@ -314,9 +312,8 @@ TEST_F(SurfacesPixelTest, DrawAggregatedFrameWithSurfaceTransforms) {
|
| }
|
|
|
| SurfaceAggregator aggregator(&manager_, resource_provider_.get());
|
| - std::set<SurfaceId> surface_set;
|
| scoped_ptr<CompositorFrame> aggregated_frame =
|
| - aggregator.Aggregate(root_surface_id, &surface_set);
|
| + aggregator.Aggregate(root_surface_id);
|
|
|
| bool discard_alpha = false;
|
| ExactPixelComparator pixel_comparator(discard_alpha);
|
|
|