Index: remoting/codec/video_encoder_vp8.h |
diff --git a/remoting/codec/video_encoder_vp8.h b/remoting/codec/video_encoder_vp8.h |
index 4b3f903bfb720f5ef519a56e4884470303716504..f26fad31d6709c31791e317cb3b8771407b6bc57 100644 |
--- a/remoting/codec/video_encoder_vp8.h |
+++ b/remoting/codec/video_encoder_vp8.h |
@@ -48,13 +48,13 @@ class VideoEncoderVp8 : public VideoEncoder { |
scoped_ptr<vpx_codec_ctx_t> codec_; |
scoped_ptr<vpx_image_t> image_; |
- scoped_array<uint8> active_map_; |
+ scoped_ptr<uint8[]> active_map_; |
int active_map_width_; |
int active_map_height_; |
int last_timestamp_; |
// Buffer for storing the yuv image. |
- scoped_array<uint8> yuv_image_; |
+ scoped_ptr<uint8[]> yuv_image_; |
DISALLOW_COPY_AND_ASSIGN(VideoEncoderVp8); |
}; |