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

Unified Diff: cc/test/fake_picture_pile_impl.h

Issue 196343005: cc: Replace recorded region with direct map lookup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: cc/test/fake_picture_pile_impl.h
diff --git a/cc/test/fake_picture_pile_impl.h b/cc/test/fake_picture_pile_impl.h
index d4ab8e09c07120b0768bd59f341cf46d3eae7a35..582c4cfe44a9ea86b49b9f2858083c89b3e06efe 100644
--- a/cc/test/fake_picture_pile_impl.h
+++ b/cc/test/fake_picture_pile_impl.h
@@ -16,17 +16,13 @@ class FakePicturePileImpl : public PicturePileImpl {
static scoped_refptr<FakePicturePileImpl> CreateFilledPile(
const gfx::Size& tile_size,
const gfx::Size& layer_bounds);
-
static scoped_refptr<FakePicturePileImpl> CreateEmptyPile(
const gfx::Size& tile_size,
const gfx::Size& layer_bounds);
-
- static scoped_refptr<FakePicturePileImpl> CreatePileWithRecordedRegion(
+ static scoped_refptr<FakePicturePileImpl> CreateEmptyPileThatThinksItHasTiles(
const gfx::Size& tile_size,
- const gfx::Size& layer_bounds,
- const Region& recorded_region);
-
- static scoped_refptr<FakePicturePileImpl> CreatePile();
+ const gfx::Size& layer_bounds);
+ static scoped_refptr<FakePicturePileImpl> CreateInfiniteFilledPile();
TilingData& tiling() { return tiling_; }

Powered by Google App Engine
This is Rietveld 408576698