| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ |
| 6 #define CHROME_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ | 6 #define CONTENT_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "media/video/video_decode_context.h" | 10 #include "media/video/video_decode_context.h" |
| 11 | 11 |
| 12 class MessageLoop; | 12 class MessageLoop; |
| 13 | 13 |
| 14 namespace ggl { | 14 namespace ggl { |
| 15 class Context; | 15 class Context; |
| 16 } // namespace ggl | 16 } // namespace ggl |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 // Pointer to the GLES2 context. | 104 // Pointer to the GLES2 context. |
| 105 ggl::Context* context_; | 105 ggl::Context* context_; |
| 106 | 106 |
| 107 // VideoFrames allocated. | 107 // VideoFrames allocated. |
| 108 std::vector<scoped_refptr<media::VideoFrame> > frames_; | 108 std::vector<scoped_refptr<media::VideoFrame> > frames_; |
| 109 | 109 |
| 110 DISALLOW_COPY_AND_ASSIGN(Gles2VideoDecodeContext); | 110 DISALLOW_COPY_AND_ASSIGN(Gles2VideoDecodeContext); |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // CHROME_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ | 113 #endif // CONTENT_RENDERER_MEDIA_GLES2_VIDEO_DECODE_CONTEXT_H_ |
| OLD | NEW |