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

Unified Diff: cc/test/fake_picture_pile.h

Issue 811953005: cc: Remove tile and scale specific code from raster source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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_picture_pile.h
diff --git a/cc/test/fake_picture_pile.h b/cc/test/fake_picture_pile.h
index 4a7b65b86b343a4620721620c489f46789c13565..a948814def17350aeee454ded66c55cfbb790192 100644
--- a/cc/test/fake_picture_pile.h
+++ b/cc/test/fake_picture_pile.h
@@ -19,7 +19,9 @@ class FakePicturePile : public PicturePile {
using PictureMapKey = PicturePile::PictureMapKey;
using PictureMap = PicturePile::PictureMap;
- FakePicturePile() : playback_allowed_event_(nullptr) {}
+ FakePicturePile(double min_content_scale, const gfx::Size& tile_grid_size)
+ : PicturePile(min_content_scale, tile_grid_size),
+ playback_allowed_event_(nullptr) {}
~FakePicturePile() override {}
// PicturePile overrides.

Powered by Google App Engine
This is Rietveld 408576698