Chromium Code Reviews| Index: chromecast/media/audio/audio_manager_factory.h |
| diff --git a/chromecast/media/audio/audio_manager_factory.h b/chromecast/media/audio/audio_manager_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9cac64e30b8ee448bea679e03eba6607e31a8f24 |
| --- /dev/null |
| +++ b/chromecast/media/audio/audio_manager_factory.h |
| @@ -0,0 +1,30 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROMECAST_MEDIA_AUDIO_AUDIO_MANAGER_FACTORY_H_ |
| +#define CHROMECAST_MEDIA_AUDIO_AUDIO_MANAGER_FACTORY_H_ |
| + |
| +#include "base/macros.h" |
| +#include "media/audio/audio_manager_factory.h" |
| + |
| +namespace chromecast { |
| +namespace media { |
| + |
| +class AudioManagerFactory : public ::media::AudioManagerFactory { |
|
gunsch
2015/09/18 21:23:07
same naming comment: CastAudioManagerFactory
alokp
2015/09/18 21:42:15
Acknowledged.
|
| + public: |
| + AudioManagerFactory(); |
| + ~AudioManagerFactory() override; |
| + |
| + // ::media::AudioManagerFactory overrides. |
| + ::media::AudioManager* CreateInstance( |
| + ::media::AudioLogFactory* audio_log_factory) override; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(AudioManagerFactory); |
| +}; |
| + |
| +} // namespace media |
| +} // namespace chromecast |
| + |
| +#endif // CHROMECAST_MEDIA_AUDIO_AUDIO_MANAGER_FACTORY_H_ |