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

Side by Side Diff: cc/trees/layer_tree_host_pixeltest_tiles.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 unified diff | Download patch
« no previous file with comments | « cc/trees/layer_tree_host_pixeltest_readback.cc ('k') | cc/trees/layer_tree_host_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stddef.h> 5 #include <stddef.h>
6 6
7 #include "cc/layers/content_layer_client.h" 7 #include "cc/layers/content_layer_client.h"
8 #include "cc/layers/picture_layer.h" 8 #include "cc/layers/picture_layer.h"
9 #include "cc/output/copy_output_request.h" 9 #include "cc/output/copy_output_request.h"
10 #include "cc/playback/display_item_list.h" 10 #include "cc/playback/display_item_list.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 test_type = PIXEL_TEST_SOFTWARE; 91 test_type = PIXEL_TEST_SOFTWARE;
92 } 92 }
93 93
94 if (threaded) 94 if (threaded)
95 RunPixelTest(test_type, content_root, file_name); 95 RunPixelTest(test_type, content_root, file_name);
96 else 96 else
97 RunSingleThreadedPixelTest(test_type, content_root, file_name); 97 RunSingleThreadedPixelTest(test_type, content_root, file_name);
98 } 98 }
99 99
100 base::FilePath ref_file_; 100 base::FilePath ref_file_;
101 scoped_ptr<SkBitmap> result_bitmap_; 101 std::unique_ptr<SkBitmap> result_bitmap_;
102 RasterMode raster_mode_; 102 RasterMode raster_mode_;
103 }; 103 };
104 104
105 class BlueYellowClient : public ContentLayerClient { 105 class BlueYellowClient : public ContentLayerClient {
106 public: 106 public:
107 explicit BlueYellowClient(const gfx::Size& size) 107 explicit BlueYellowClient(const gfx::Size& size)
108 : size_(size), blue_top_(true) {} 108 : size_(size), blue_top_(true) {}
109 109
110 gfx::Rect PaintableRegion() override { return gfx::Rect(size_); } 110 gfx::Rect PaintableRegion() override { return gfx::Rect(size_); }
111 scoped_refptr<DisplayItemList> PaintContentsToDisplayList( 111 scoped_refptr<DisplayItemList> PaintContentsToDisplayList(
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 FullRaster_SingleThread_GpuRaster) { 234 FullRaster_SingleThread_GpuRaster) {
235 RunRasterPixelTest( 235 RunRasterPixelTest(
236 false, FULL_GPU, picture_layer_, 236 false, FULL_GPU, picture_layer_,
237 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png"))); 237 base::FilePath(FILE_PATH_LITERAL("blue_yellow_flipped.png")));
238 } 238 }
239 239
240 } // namespace 240 } // namespace
241 } // namespace cc 241 } // namespace cc
242 242
243 #endif // !defined(OS_ANDROID) 243 #endif // !defined(OS_ANDROID)
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_pixeltest_readback.cc ('k') | cc/trees/layer_tree_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698