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

Unified Diff: cc/tiles/prioritized_tile.h

Issue 1837263005: cc: Rename DisplayListRasterSource to just RasterSource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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_unittest.cc ('k') | cc/tiles/prioritized_tile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tiles/prioritized_tile.h
diff --git a/cc/tiles/prioritized_tile.h b/cc/tiles/prioritized_tile.h
index de3abbb7d01b4340e940fad9d5676d3d5c7702f2..5fda4909f15031a51b234915caf46353cbad2f52 100644
--- a/cc/tiles/prioritized_tile.h
+++ b/cc/tiles/prioritized_tile.h
@@ -6,12 +6,12 @@
#define CC_TILES_PRIORITIZED_TILE_H_
#include "cc/base/cc_export.h"
-#include "cc/playback/display_list_raster_source.h"
+#include "cc/playback/raster_source.h"
#include "cc/tiles/tile.h"
#include "cc/tiles/tile_priority.h"
namespace cc {
-class DisplayListRasterSource;
+class RasterSource;
class PictureLayerTiling;
class CC_EXPORT PrioritizedTile {
@@ -23,7 +23,7 @@ class CC_EXPORT PrioritizedTile {
~PrioritizedTile();
Tile* tile() const { return tile_; }
- const scoped_refptr<DisplayListRasterSource>& raster_source() const {
+ const scoped_refptr<RasterSource>& raster_source() const {
return raster_source_;
}
const TilePriority& priority() const { return priority_; }
@@ -35,12 +35,12 @@ class CC_EXPORT PrioritizedTile {
friend class PictureLayerTiling;
PrioritizedTile(Tile* tile,
- scoped_refptr<DisplayListRasterSource> raster_source,
+ scoped_refptr<RasterSource> raster_source,
const TilePriority priority,
bool is_occluded);
Tile* tile_;
- scoped_refptr<DisplayListRasterSource> raster_source_;
+ scoped_refptr<RasterSource> raster_source_;
TilePriority priority_;
bool is_occluded_;
};
« no previous file with comments | « cc/tiles/picture_layer_tiling_unittest.cc ('k') | cc/tiles/prioritized_tile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698