Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Side by Side Diff: media/filters/gpu_video_decoder.h

Issue 13243003: Move MessageLoop to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « media/base/test_helpers.h ('k') | media/tools/player_x11/gl_video_renderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ 5 #ifndef MEDIA_FILTERS_GPU_VIDEO_DECODER_H_
6 #define MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ 6 #define MEDIA_FILTERS_GPU_VIDEO_DECODER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
11 #include <vector> 11 #include <vector>
12 12
13 #include "media/base/pipeline_status.h" 13 #include "media/base/pipeline_status.h"
14 #include "media/base/demuxer_stream.h" 14 #include "media/base/demuxer_stream.h"
15 #include "media/base/video_decoder.h" 15 #include "media/base/video_decoder.h"
16 #include "media/video/video_decode_accelerator.h" 16 #include "media/video/video_decode_accelerator.h"
17 17
18 class MessageLoop;
19 template <class T> class scoped_refptr; 18 template <class T> class scoped_refptr;
19
20 namespace base { 20 namespace base {
21 class MessageLoopProxy; 21 class MessageLoopProxy;
22 class SharedMemory; 22 class SharedMemory;
23 } 23 }
24 24
25 class SkBitmap; 25 class SkBitmap;
26 26
27 namespace media { 27 namespace media {
28 28
29 class DecoderBuffer; 29 class DecoderBuffer;
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 // Set during ProvidePictureBuffers(), used for checking and implementing 237 // Set during ProvidePictureBuffers(), used for checking and implementing
238 // HasAvailableOutputFrames(). 238 // HasAvailableOutputFrames().
239 int available_pictures_; 239 int available_pictures_;
240 240
241 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoder); 241 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoder);
242 }; 242 };
243 243
244 } // namespace media 244 } // namespace media
245 245
246 #endif // MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ 246 #endif // MEDIA_FILTERS_GPU_VIDEO_DECODER_H_
OLDNEW
« no previous file with comments | « media/base/test_helpers.h ('k') | media/tools/player_x11/gl_video_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698