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

Side by Side Diff: content/browser/renderer_host/media/audio_input_renderer_host.h

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // AudioInputRendererHost serves audio related requests from audio capturer 5 // AudioInputRendererHost serves audio related requests from audio capturer
6 // which lives inside the render process and provide access to audio hardware. 6 // which lives inside the render process and provide access to audio hardware.
7 // 7 //
8 // Create stream sequence (AudioInputController = AIC): 8 // Create stream sequence (AudioInputController = AIC):
9 // 9 //
10 // AudioInputHostMsg_CreateStream -> OnCreateStream -> AIC::CreateLowLatency -> 10 // AudioInputHostMsg_CreateStream -> OnCreateStream -> AIC::CreateLowLatency ->
(...skipping 28 matching lines...) Expand all
39 #include "content/common/media/audio_messages.h" 39 #include "content/common/media/audio_messages.h"
40 #include "content/public/browser/browser_message_filter.h" 40 #include "content/public/browser/browser_message_filter.h"
41 #include "content/public/browser/browser_thread.h" 41 #include "content/public/browser/browser_thread.h"
42 #include "media/audio/audio_input_controller.h" 42 #include "media/audio/audio_input_controller.h"
43 #include "media/audio/audio_io.h" 43 #include "media/audio/audio_io.h"
44 #include "media/audio/audio_logging.h" 44 #include "media/audio/audio_logging.h"
45 #include "media/audio/simple_sources.h" 45 #include "media/audio/simple_sources.h"
46 46
47 namespace media { 47 namespace media {
48 class AudioManager; 48 class AudioManager;
49 class AudioParameters;
50 class UserInputMonitor; 49 class UserInputMonitor;
51 } 50 }
52 51
53 namespace content { 52 namespace content {
54 class AudioMirroringManager; 53 class AudioMirroringManager;
55 class MediaStreamManager; 54 class MediaStreamManager;
56 class RenderProcessHost; 55 class RenderProcessHost;
57 56
58 class CONTENT_EXPORT AudioInputRendererHost 57 class CONTENT_EXPORT AudioInputRendererHost
59 : public BrowserMessageFilter, 58 : public BrowserMessageFilter,
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 std::unique_ptr<media::AudioLog> audio_log_; 261 std::unique_ptr<media::AudioLog> audio_log_;
263 262
264 base::WeakPtrFactory<AudioInputRendererHost> weak_factory_; 263 base::WeakPtrFactory<AudioInputRendererHost> weak_factory_;
265 264
266 DISALLOW_COPY_AND_ASSIGN(AudioInputRendererHost); 265 DISALLOW_COPY_AND_ASSIGN(AudioInputRendererHost);
267 }; 266 };
268 267
269 } // namespace content 268 } // namespace content
270 269
271 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_ 270 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_RENDERER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698