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

Side by Side Diff: chromecast/media/audio/cast_audio_manager_factory.h

Issue 1308153005: [Chromecast] Plumbs raw audio through CMA backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed cast_shell compile error Created 5 years, 3 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_FACTORY_H_
6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_FACTORY_H_
7
8 #include "base/macros.h"
9 #include "media/audio/audio_manager_factory.h"
10
11 namespace chromecast {
12 namespace media {
13
14 class CastAudioManagerFactory : public ::media::AudioManagerFactory {
15 public:
16 CastAudioManagerFactory();
17 ~CastAudioManagerFactory() override;
18
19 // ::media::AudioManagerFactory overrides.
20 ::media::AudioManager* CreateInstance(
21 ::media::AudioLogFactory* audio_log_factory) override;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(CastAudioManagerFactory);
25 };
26
27 } // namespace media
28 } // namespace chromecast
29
30 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_FACTORY_H_
OLDNEW
« no previous file with comments | « chromecast/media/audio/cast_audio_manager.cc ('k') | chromecast/media/audio/cast_audio_manager_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698