Index: cc/tiles/prioritized_tile.h |
diff --git a/cc/tiles/prioritized_tile.h b/cc/tiles/prioritized_tile.h |
index 7decc73cca1c5d8ee4828769272b78686e4cac6b..58ba6811d196d49114f612b0b53c9542c79780b2 100644 |
--- a/cc/tiles/prioritized_tile.h |
+++ b/cc/tiles/prioritized_tile.h |
@@ -24,7 +24,8 @@ class CC_EXPORT PrioritizedTile { |
const PictureLayerTiling* source_tiling, |
const TilePriority& priority, |
bool is_occluded, |
- bool is_process_for_images_only); |
+ bool is_process_for_images_only, |
+ bool should_process_for_checker_images); |
~PrioritizedTile(); |
Tile* tile() const { return tile_; } |
@@ -36,6 +37,9 @@ class CC_EXPORT PrioritizedTile { |
bool is_process_for_images_only() const { |
return is_process_for_images_only_; |
} |
+ bool should_process_for_checker_images() const { |
+ return should_process_for_checker_images_; |
+ } |
void AsValueInto(base::trace_event::TracedValue* value) const; |
@@ -45,6 +49,7 @@ class CC_EXPORT PrioritizedTile { |
TilePriority priority_; |
bool is_occluded_ = false; |
bool is_process_for_images_only_ = false; |
+ bool should_process_for_checker_images_ = false; |
}; |
} // namespace cc |