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

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

Issue 2545733002: chromecast: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years 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 2015 The Chromium Authors. All rights reserved. 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 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 CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ 5 #ifndef CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_
6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ 6 #define CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "media/audio/audio_manager_base.h" 9 #include "media/audio/audio_manager_base.h"
10 10
11 namespace chromecast { 11 namespace chromecast {
12 12
13 class TaskRunnerImpl;
14
15 namespace media { 13 namespace media {
16 14
17 class CastAudioMixer; 15 class CastAudioMixer;
18 class MediaPipelineBackend; 16 class MediaPipelineBackend;
19 class MediaPipelineBackendManager; 17 class MediaPipelineBackendManager;
20 struct MediaPipelineDeviceParams; 18 struct MediaPipelineDeviceParams;
21 19
22 class CastAudioManager : public ::media::AudioManagerBase { 20 class CastAudioManager : public ::media::AudioManagerBase {
23 public: 21 public:
24 CastAudioManager( 22 CastAudioManager(
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 std::unique_ptr<::media::AudioOutputStream> mixer_output_stream_; 79 std::unique_ptr<::media::AudioOutputStream> mixer_output_stream_;
82 std::unique_ptr<CastAudioMixer> mixer_; 80 std::unique_ptr<CastAudioMixer> mixer_;
83 81
84 DISALLOW_COPY_AND_ASSIGN(CastAudioManager); 82 DISALLOW_COPY_AND_ASSIGN(CastAudioManager);
85 }; 83 };
86 84
87 } // namespace media 85 } // namespace media
88 } // namespace chromecast 86 } // namespace chromecast
89 87
90 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_ 88 #endif // CHROMECAST_MEDIA_AUDIO_CAST_AUDIO_MANAGER_H_
OLDNEW
« no previous file with comments | « chromecast/browser/metrics/cast_stability_metrics_provider.h ('k') | chromecast/media/audio/cast_audio_mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698