| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ | 5 #ifndef MEDIA_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ |
| 6 #define MEDIA_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ | 6 #define MEDIA_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "media/video/video_decode_accelerator.h" | 21 #include "media/video/video_decode_accelerator.h" |
| 22 #include "media/video/video_encode_accelerator.h" | 22 #include "media/video/video_encode_accelerator.h" |
| 23 #include "ui/gfx/gpu_memory_buffer.h" | 23 #include "ui/gfx/gpu_memory_buffer.h" |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class SingleThreadTaskRunner; | 26 class SingleThreadTaskRunner; |
| 27 class SharedMemory; | 27 class SharedMemory; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace gfx { | 30 namespace gfx { |
| 31 class Rect; | |
| 32 class Size; | 31 class Size; |
| 33 } | 32 } |
| 34 | 33 |
| 35 namespace gpu { | 34 namespace gpu { |
| 36 struct SyncToken; | 35 struct SyncToken; |
| 37 }; | 36 }; |
| 38 | 37 |
| 39 namespace media { | 38 namespace media { |
| 40 | 39 |
| 41 class VideoDecodeAccelerator; | 40 class VideoDecodeAccelerator; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 GetVideoEncodeAcceleratorSupportedProfiles() = 0; | 126 GetVideoEncodeAcceleratorSupportedProfiles() = 0; |
| 128 | 127 |
| 129 protected: | 128 protected: |
| 130 friend class base::RefCounted<GpuVideoAcceleratorFactories>; | 129 friend class base::RefCounted<GpuVideoAcceleratorFactories>; |
| 131 virtual ~GpuVideoAcceleratorFactories() {} | 130 virtual ~GpuVideoAcceleratorFactories() {} |
| 132 }; | 131 }; |
| 133 | 132 |
| 134 } // namespace media | 133 } // namespace media |
| 135 | 134 |
| 136 #endif // MEDIA_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ | 135 #endif // MEDIA_RENDERERS_GPU_VIDEO_ACCELERATOR_FACTORIES_H_ |
| OLD | NEW |