Chromium Code Reviews| Index: cc/layers/paint_properties.h |
| diff --git a/cc/layers/paint_properties.h b/cc/layers/paint_properties.h |
| index 323e9499edb520e9a54fda9f768d7410d0ea68c5..752d971f3df72cf182dd4966138fb6201db8069f 100644 |
| --- a/cc/layers/paint_properties.h |
| +++ b/cc/layers/paint_properties.h |
| @@ -5,17 +5,24 @@ |
| #ifndef CC_LAYERS_PAINT_PROPERTIES_H_ |
| #define CC_LAYERS_PAINT_PROPERTIES_H_ |
| +#include <utility> |
| +#include <vector> |
| + |
| +#include "cc/base/cc_export.h" |
| #include "ui/gfx/size.h" |
| namespace cc { |
| // Container for properties that layers need to save before they can be paint. |
| struct CC_EXPORT PaintProperties { |
| - PaintProperties() : source_frame_number(-1) {} |
| + PaintProperties(); |
| + ~PaintProperties(); |
| gfx::Size bounds; |
| int source_frame_number; |
| + |
| + std::vector<std::pair<int, int64_t> > draw_frame_request_ids; |
|
enne (OOO)
2014/07/22 20:44:25
This looks unused. I'm not sure you should be cha
Mike B
2014/07/25 23:09:40
Yes, that was from an earlier iteration and snuck
|
| }; |
| } // namespace cc |