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

Unified Diff: cc/resources/raster_tile_priority_queue_all.h

Issue 866883003: cc: Remove TilingSetRasterQueue virtual base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp/gn Created 5 years, 11 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/layers/picture_layer_impl_unittest.cc ('k') | cc/resources/raster_tile_priority_queue_all.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/raster_tile_priority_queue_all.h
diff --git a/cc/resources/raster_tile_priority_queue_all.h b/cc/resources/raster_tile_priority_queue_all.h
index 73c946560990d1061807088a44ecb044b0ca47d7..c2b8910c00611daa04831f9fe54e12d150b7b341 100644
--- a/cc/resources/raster_tile_priority_queue_all.h
+++ b/cc/resources/raster_tile_priority_queue_all.h
@@ -13,7 +13,7 @@
#include "cc/layers/picture_layer_impl.h"
#include "cc/resources/raster_tile_priority_queue.h"
#include "cc/resources/tile_priority.h"
-#include "cc/resources/tiling_set_raster_queue.h"
+#include "cc/resources/tiling_set_raster_queue_all.h"
namespace cc {
@@ -35,16 +35,16 @@ class CC_EXPORT RasterTilePriorityQueueAll : public RasterTilePriorityQueue {
scoped_refptr<base::debug::ConvertableToTraceFormat> StateAsValue() const;
- const TilingSetRasterQueue* active_queue() const {
+ const TilingSetRasterQueueAll* active_queue() const {
return active_queue_.get();
}
- const TilingSetRasterQueue* pending_queue() const {
+ const TilingSetRasterQueueAll* pending_queue() const {
return pending_queue_.get();
}
private:
- scoped_ptr<TilingSetRasterQueue> active_queue_;
- scoped_ptr<TilingSetRasterQueue> pending_queue_;
+ scoped_ptr<TilingSetRasterQueueAll> active_queue_;
+ scoped_ptr<TilingSetRasterQueueAll> pending_queue_;
bool has_both_layers_;
// Set of returned tiles (excluding the current one) for DCHECKing.
« no previous file with comments | « cc/layers/picture_layer_impl_unittest.cc ('k') | cc/resources/raster_tile_priority_queue_all.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698