Chromium Code Reviews| Index: cc/test/test_picture_pile.h |
| diff --git a/cc/test/test_picture_pile.h b/cc/test/test_picture_pile.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6af8b56170ba909650e7cec05b01f581331d3407 |
| --- /dev/null |
| +++ b/cc/test/test_picture_pile.h |
| @@ -0,0 +1,53 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CC_TEST_PICTURE_PILE_H_ |
| +#define CC_TEST_PICTURE_PILE_H_ |
| + |
| +#include "cc/resources/picture_pile.h" |
| + |
| +namespace cc { |
| + |
| +class TestPicturePile : public PicturePile { |
| + public: |
| + ~TestPicturePile() override {} |
| + |
| + using PicturePile::buffer_pixels; |
| + using PicturePile::CanRasterSlowTileCheck; |
| + using PicturePile::Clear; |
| + |
| + PictureMap& picture_map() { return picture_map_; } |
| + const gfx::Rect& recorded_viewport() const { return recorded_viewport_; } |
| + |
| + bool CanRasterLayerRect(gfx::Rect layer_rect) { |
| + layer_rect.Intersect(gfx::Rect(tiling_.tiling_size())); |
| + if (recorded_viewport_.Contains(layer_rect)) |
| + return true; |
| + return CanRasterSlowTileCheck(layer_rect); |
| + } |
| + |
| + bool HasRecordings() const { return has_any_recordings_; } |
| + |
| + void SetRecordedViewportForTesting(const gfx::Rect& viewport) { |
| + recorded_viewport_ = viewport; |
| + } |
| + |
| + void SetHasAnyRecordingsForTesting(bool has_recordings) { |
| + has_any_recordings_ = has_recordings; |
| + } |
| + |
| + TilingData& tiling() { return tiling_; } |
| + |
| + bool is_solid_color() const { return is_solid_color_; } |
| + SkColor solid_color() const { return solid_color_; } |
| + |
| + void SetPixelRecordDistanceForTesting(int d) { pixel_record_distance_ = d; } |
| + |
| + typedef PicturePile::PictureInfo PictureInfo; |
| + typedef PicturePile::PictureMapKey PictureMapKey; |
| + typedef PicturePile::PictureMap PictureMap; |
| +}; |
| +} |
|
vmpstr
2014/11/12 19:18:59
// namespace cc
hendrikw
2014/11/12 19:37:32
Done. windows presubmit fail!
|
| + |
| +#endif // CC_TEST_PICTURE_PILE_H_ |