Chromium Code Reviews| Index: cc/resources/video_resource_updater.h | 
| diff --git a/cc/resources/video_resource_updater.h b/cc/resources/video_resource_updater.h | 
| index 622fe68d7c634829da03be8fea9350cb1a421598..9a6bf13c76f544260261ee264d04e942d3ec03f8 100644 | 
| --- a/cc/resources/video_resource_updater.h | 
| +++ b/cc/resources/video_resource_updater.h | 
| @@ -131,6 +131,9 @@ class CC_EXPORT VideoResourceUpdater | 
| ContextProvider* context_provider_; | 
| ResourceProvider* resource_provider_; | 
| scoped_ptr<media::SkCanvasVideoRenderer> video_renderer_; | 
| + // TODO(danakj): Use std::array when we can. | 
| 
 
ericrk
2015/02/19 19:57:41
std::array is compile-time fixed size.
Maybe std:
 
danakj
2015/02/19 20:46:21
Oh! Hrm. I could just use vector now with some cas
 
 | 
| + scoped_ptr<uint8_t[]> upload_pixels_; | 
| + size_t upload_pixels_size_; | 
| // Recycle resources so that we can reduce the number of allocations and | 
| // data transfers. |