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

Unified Diff: cc/tiles/picture_layer_tiling_set_unittest.cc

Issue 1866203004: Convert //cc from scoped_ptr to std::unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptrcc: rebase 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
« no previous file with comments | « cc/tiles/picture_layer_tiling_set.cc ('k') | cc/tiles/picture_layer_tiling_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tiles/picture_layer_tiling_set_unittest.cc
diff --git a/cc/tiles/picture_layer_tiling_set_unittest.cc b/cc/tiles/picture_layer_tiling_set_unittest.cc
index 477c8f55281c7ae95ff5bbedae7f17299fb11678..ceb40dcae7a4b97bb23140086d93254d9cadb205 100644
--- a/cc/tiles/picture_layer_tiling_set_unittest.cc
+++ b/cc/tiles/picture_layer_tiling_set_unittest.cc
@@ -21,7 +21,7 @@
namespace cc {
namespace {
-scoped_ptr<PictureLayerTilingSet> CreateTilingSet(
+std::unique_ptr<PictureLayerTilingSet> CreateTilingSet(
PictureLayerTilingClient* client) {
LayerTreeSettings defaults;
return PictureLayerTilingSet::Create(
@@ -33,7 +33,7 @@ scoped_ptr<PictureLayerTilingSet> CreateTilingSet(
TEST(PictureLayerTilingSetTest, NoResources) {
FakePictureLayerTilingClient client;
gfx::Size layer_bounds(1000, 800);
- scoped_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
+ std::unique_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
client.SetTileSize(gfx::Size(256, 256));
scoped_refptr<FakeRasterSource> raster_source =
@@ -77,7 +77,7 @@ TEST(PictureLayerTilingSetTest, TilingRange) {
scoped_refptr<FakeRasterSource> raster_source =
FakeRasterSource::CreateFilled(layer_bounds);
- scoped_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
+ std::unique_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
set->AddTiling(2.0, raster_source);
high_res_tiling = set->AddTiling(1.0, raster_source);
high_res_tiling->set_resolution(HIGH_RESOLUTION);
@@ -109,7 +109,7 @@ TEST(PictureLayerTilingSetTest, TilingRange) {
EXPECT_EQ(4u, lower_than_low_res_range.start);
EXPECT_EQ(5u, lower_than_low_res_range.end);
- scoped_ptr<PictureLayerTilingSet> set_without_low_res =
+ std::unique_ptr<PictureLayerTilingSet> set_without_low_res =
CreateTilingSet(&client);
set_without_low_res->AddTiling(2.0, raster_source);
high_res_tiling = set_without_low_res->AddTiling(1.0, raster_source);
@@ -140,7 +140,7 @@ TEST(PictureLayerTilingSetTest, TilingRange) {
PictureLayerTilingSet::LOWER_THAN_LOW_RES);
EXPECT_EQ(0u, lower_than_low_res_range.end - lower_than_low_res_range.start);
- scoped_ptr<PictureLayerTilingSet> set_with_only_high_and_low_res =
+ std::unique_ptr<PictureLayerTilingSet> set_with_only_high_and_low_res =
CreateTilingSet(&client);
high_res_tiling =
set_with_only_high_and_low_res->AddTiling(1.0, raster_source);
@@ -174,7 +174,7 @@ TEST(PictureLayerTilingSetTest, TilingRange) {
PictureLayerTilingSet::LOWER_THAN_LOW_RES);
EXPECT_EQ(0u, lower_than_low_res_range.end - lower_than_low_res_range.start);
- scoped_ptr<PictureLayerTilingSet> set_with_only_high_res =
+ std::unique_ptr<PictureLayerTilingSet> set_with_only_high_res =
CreateTilingSet(&client);
high_res_tiling = set_with_only_high_res->AddTiling(1.0, raster_source);
high_res_tiling->set_resolution(HIGH_RESOLUTION);
@@ -211,20 +211,20 @@ class PictureLayerTilingSetTestWithResources : public testing::Test {
float ideal_contents_scale,
float expected_scale) {
FakeOutputSurfaceClient output_surface_client;
- scoped_ptr<FakeOutputSurface> output_surface =
+ std::unique_ptr<FakeOutputSurface> output_surface =
FakeOutputSurface::Create3d();
CHECK(output_surface->BindToClient(&output_surface_client));
- scoped_ptr<SharedBitmapManager> shared_bitmap_manager(
+ std::unique_ptr<SharedBitmapManager> shared_bitmap_manager(
new TestSharedBitmapManager());
- scoped_ptr<ResourceProvider> resource_provider =
+ std::unique_ptr<ResourceProvider> resource_provider =
FakeResourceProvider::Create(output_surface.get(),
shared_bitmap_manager.get());
FakePictureLayerTilingClient client(resource_provider.get());
client.SetTileSize(gfx::Size(256, 256));
gfx::Size layer_bounds(1000, 800);
- scoped_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
+ std::unique_ptr<PictureLayerTilingSet> set = CreateTilingSet(&client);
scoped_refptr<FakeRasterSource> raster_source =
FakeRasterSource::CreateFilled(layer_bounds);
@@ -299,10 +299,12 @@ TEST_F(PictureLayerTilingSetTestWithResources, ManyTilings_NotEqual) {
TEST(PictureLayerTilingSetTest, TileSizeChange) {
FakePictureLayerTilingClient pending_client;
FakePictureLayerTilingClient active_client;
- scoped_ptr<PictureLayerTilingSet> pending_set = PictureLayerTilingSet::Create(
- PENDING_TREE, &pending_client, 1000, 1.f, 1000);
- scoped_ptr<PictureLayerTilingSet> active_set = PictureLayerTilingSet::Create(
- ACTIVE_TREE, &active_client, 1000, 1.f, 1000);
+ std::unique_ptr<PictureLayerTilingSet> pending_set =
+ PictureLayerTilingSet::Create(PENDING_TREE, &pending_client, 1000, 1.f,
+ 1000);
+ std::unique_ptr<PictureLayerTilingSet> active_set =
+ PictureLayerTilingSet::Create(ACTIVE_TREE, &active_client, 1000, 1.f,
+ 1000);
gfx::Size layer_bounds(100, 100);
scoped_refptr<FakeRasterSource> raster_source =
@@ -406,10 +408,12 @@ TEST(PictureLayerTilingSetTest, TileSizeChange) {
TEST(PictureLayerTilingSetTest, MaxContentScale) {
FakePictureLayerTilingClient pending_client;
FakePictureLayerTilingClient active_client;
- scoped_ptr<PictureLayerTilingSet> pending_set = PictureLayerTilingSet::Create(
- PENDING_TREE, &pending_client, 1000, 1.f, 1000);
- scoped_ptr<PictureLayerTilingSet> active_set = PictureLayerTilingSet::Create(
- ACTIVE_TREE, &active_client, 1000, 1.f, 1000);
+ std::unique_ptr<PictureLayerTilingSet> pending_set =
+ PictureLayerTilingSet::Create(PENDING_TREE, &pending_client, 1000, 1.f,
+ 1000);
+ std::unique_ptr<PictureLayerTilingSet> active_set =
+ PictureLayerTilingSet::Create(ACTIVE_TREE, &active_client, 1000, 1.f,
+ 1000);
gfx::Size layer_bounds(100, 105);
scoped_refptr<FakeRasterSource> raster_source =
« no previous file with comments | « cc/tiles/picture_layer_tiling_set.cc ('k') | cc/tiles/picture_layer_tiling_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698