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

Unified Diff: cc/test/fake_tile_manager.h

Issue 2537683002: cc: Add image decode queue functionality to image manager. (Closed)
Patch Set: image-decode: update Created 3 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
Index: cc/test/fake_tile_manager.h
diff --git a/cc/test/fake_tile_manager.h b/cc/test/fake_tile_manager.h
index d5dde70ed62fa7f74066334e5dff42d0c3ba6c24..08cbe8d19d6ca796de267638ea5c864e54d9ada5 100644
--- a/cc/test/fake_tile_manager.h
+++ b/cc/test/fake_tile_manager.h
@@ -15,8 +15,8 @@ namespace cc {
class FakeTileManager : public TileManager {
public:
- explicit FakeTileManager(TileManagerClient* client);
- FakeTileManager(TileManagerClient* client, ResourcePool* resource_pool);
+ FakeTileManager(TileManagerClient* client,
+ ResourcePool* resource_pool = nullptr);
~FakeTileManager() override;
bool HasBeenAssignedMemory(Tile* tile);
@@ -29,6 +29,7 @@ class FakeTileManager : public TileManager {
private:
SoftwareImageDecodeCache image_decode_cache_;
+ DecodedImageTracker decoded_image_tracker_;
};
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698