| Index: cc/layers/layer_impl.h
|
| diff --git a/cc/layers/layer_impl.h b/cc/layers/layer_impl.h
|
| index ac6a2bf1ff77e6b2b2c089f777017f42e3e52574..e44a585a1a2f8eeb50ad74a660f976327c7e7f5d 100644
|
| --- a/cc/layers/layer_impl.h
|
| +++ b/cc/layers/layer_impl.h
|
| @@ -548,11 +548,11 @@ class CC_EXPORT LayerImpl {
|
|
|
| virtual gfx::Rect GetEnclosingRectInTargetSpace() const;
|
|
|
| - void set_layer_or_descendant_is_drawn(bool layer_or_descendant_is_drawn) {
|
| - layer_or_descendant_is_drawn_ = layer_or_descendant_is_drawn;
|
| + void set_scrolls_drawn_descendant(bool scrolls_drawn_descendant) {
|
| + scrolls_drawn_descendant_ = scrolls_drawn_descendant;
|
| }
|
|
|
| - bool layer_or_descendant_is_drawn() { return layer_or_descendant_is_drawn_; }
|
| + bool scrolls_drawn_descendant() { return scrolls_drawn_descendant_; }
|
|
|
| void set_layer_or_descendant_has_touch_handler(
|
| bool layer_or_descendant_has_touch_handler) {
|
| @@ -754,7 +754,7 @@ class CC_EXPORT LayerImpl {
|
|
|
| std::vector<FrameTimingRequest> frame_timing_requests_;
|
| bool frame_timing_requests_dirty_;
|
| - bool layer_or_descendant_is_drawn_;
|
| + bool scrolls_drawn_descendant_;
|
| // If true, the layer or one of its descendants has a touch handler.
|
| bool layer_or_descendant_has_touch_handler_;
|
|
|
|
|