| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DEFAULT_RENDERER_FACTORY_H_ | 5 #ifndef MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| 6 #define MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ | 6 #define MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
| 13 #include "media/base/media_export.h" | 13 #include "media/base/media_export.h" |
| 14 #include "media/base/renderer_factory.h" | 14 #include "media/base/renderer_factory.h" |
| 15 | 15 |
| 16 namespace media { | 16 namespace media { |
| 17 | 17 |
| 18 class AudioDecoder; | 18 class AudioDecoder; |
| 19 class AudioHardwareConfig; | |
| 20 class AudioRendererSink; | 19 class AudioRendererSink; |
| 21 class DecoderFactory; | 20 class DecoderFactory; |
| 22 class GpuVideoAcceleratorFactories; | 21 class GpuVideoAcceleratorFactories; |
| 23 class MediaLog; | 22 class MediaLog; |
| 24 class VideoDecoder; | 23 class VideoDecoder; |
| 25 class VideoRendererSink; | 24 class VideoRendererSink; |
| 26 | 25 |
| 27 // The default factory class for creating RendererImpl. | 26 // The default factory class for creating RendererImpl. |
| 28 class MEDIA_EXPORT DefaultRendererFactory : public RendererFactory { | 27 class MEDIA_EXPORT DefaultRendererFactory : public RendererFactory { |
| 29 public: | 28 public: |
| (...skipping 27 matching lines...) Expand all Loading... |
| 57 | 56 |
| 58 // Creates factories for supporting video accelerators. May be null. | 57 // Creates factories for supporting video accelerators. May be null. |
| 59 GetGpuFactoriesCB get_gpu_factories_cb_; | 58 GetGpuFactoriesCB get_gpu_factories_cb_; |
| 60 | 59 |
| 61 DISALLOW_COPY_AND_ASSIGN(DefaultRendererFactory); | 60 DISALLOW_COPY_AND_ASSIGN(DefaultRendererFactory); |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 } // namespace media | 63 } // namespace media |
| 65 | 64 |
| 66 #endif // MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ | 65 #endif // MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| OLD | NEW |