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

Side by Side Diff: media/renderers/default_renderer_factory.h

Issue 2120273004: Getting rid of AudioHardwareConfig and its synchronous IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to guidou@ changes, dropped unknown frame id and default param caching Created 4 years, 5 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
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698