| Index: cc/output/direct_renderer.h
|
| diff --git a/cc/output/direct_renderer.h b/cc/output/direct_renderer.h
|
| index be72632bead99dcf01b6b277f65a5ce694116877..6721e24e9bd822f6f5c275df94be1af33631dd3b 100644
|
| --- a/cc/output/direct_renderer.h
|
| +++ b/cc/output/direct_renderer.h
|
| @@ -9,6 +9,7 @@
|
| #include "base/callback.h"
|
| #include "base/containers/scoped_ptr_hash_map.h"
|
| #include "cc/base/cc_export.h"
|
| +#include "cc/output/ca_layer_overlay.h"
|
| #include "cc/output/overlay_processor.h"
|
| #include "cc/output/renderer.h"
|
| #include "cc/raster/task_graph_runner.h"
|
| @@ -56,6 +57,7 @@ class CC_EXPORT DirectRenderer : public Renderer {
|
| bool disable_picture_quad_image_filtering;
|
|
|
| OverlayCandidateList overlay_list;
|
| + CALayerOverlayList ca_layer_overlay_list;
|
| };
|
|
|
| void SetEnlargePassTextureAmountForTesting(const gfx::Vector2d& amount);
|
| @@ -158,6 +160,10 @@ class CC_EXPORT DirectRenderer : public Renderer {
|
| private:
|
| gfx::Vector2d enlarge_pass_texture_amount_;
|
|
|
| + // Regions that must be drawn in the next frame because they were represented
|
| + // as CALayers in the current frame.
|
| + gfx::Rect next_root_damage_rect_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(DirectRenderer);
|
| };
|
|
|
|
|