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

Unified Diff: cc/test/fake_picture_layer_tiling_client.h

Issue 1362663002: cc: Remove PicturePile and PicturePileImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update Created 5 years, 3 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/test/fake_picture_layer_impl.h ('k') | cc/test/fake_picture_layer_tiling_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_picture_layer_tiling_client.h
diff --git a/cc/test/fake_picture_layer_tiling_client.h b/cc/test/fake_picture_layer_tiling_client.h
index 7b97c910f817e76c5e9beb3047febd20d1be82d6..bce66489aa3b8373d2925cff388ea7a213afc032 100644
--- a/cc/test/fake_picture_layer_tiling_client.h
+++ b/cc/test/fake_picture_layer_tiling_client.h
@@ -5,7 +5,7 @@
#ifndef CC_TEST_FAKE_PICTURE_LAYER_TILING_CLIENT_H_
#define CC_TEST_FAKE_PICTURE_LAYER_TILING_CLIENT_H_
-#include "cc/playback/picture_pile_impl.h"
+#include "cc/playback/display_list_raster_source.h"
#include "cc/test/fake_tile_manager_client.h"
#include "cc/tiles/picture_layer_tiling.h"
#include "cc/tiles/tile.h"
@@ -46,7 +46,7 @@ class FakePictureLayerTilingClient : public PictureLayerTilingClient {
void set_has_valid_tile_priorities(bool has_valid_tile_priorities) {
has_valid_tile_priorities_ = has_valid_tile_priorities;
}
- RasterSource* raster_source() { return pile_.get(); }
+ RasterSource* raster_source() { return raster_source_.get(); }
TileManager* tile_manager() const {
return tile_manager_.get();
@@ -56,7 +56,7 @@ class FakePictureLayerTilingClient : public PictureLayerTilingClient {
FakeTileManagerClient tile_manager_client_;
scoped_ptr<ResourcePool> resource_pool_;
scoped_ptr<TileManager> tile_manager_;
- scoped_refptr<PicturePileImpl> pile_;
+ scoped_refptr<DisplayListRasterSource> raster_source_;
gfx::Size tile_size_;
PictureLayerTilingSet* twin_set_;
PictureLayerTiling* twin_tiling_;
« no previous file with comments | « cc/test/fake_picture_layer_impl.h ('k') | cc/test/fake_picture_layer_tiling_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698