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

Unified Diff: content/browser/renderer_host/media/audio_input_renderer_host.cc

Issue 10790121: First step towards moving AudioDevice from content/ to media/audio. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unnecessary #include Created 8 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/audio_input_renderer_host.cc
diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.cc b/content/browser/renderer_host/media/audio_input_renderer_host.cc
index 4af7b61e349cddd8d0daa75dc834d315219bdd64..ef18b45bd0fe689765258bda2878fba504f5e892 100644
--- a/content/browser/renderer_host/media/audio_input_renderer_host.cc
+++ b/content/browser/renderer_host/media/audio_input_renderer_host.cc
@@ -292,7 +292,7 @@ void AudioInputRendererHost::OnSetVolume(int stream_id, double volume) {
void AudioInputRendererHost::SendErrorMessage(int stream_id) {
Send(new AudioInputMsg_NotifyStreamStateChanged(stream_id,
- kAudioStreamError));
+ media::kAudioStreamError));
}
void AudioInputRendererHost::DeleteEntries() {
@@ -334,7 +334,7 @@ void AudioInputRendererHost::OnDeviceStopped(int session_id) {
CloseAndDeleteStream(entry);
// Notify the renderer that the state of the input stream has changed.
Send(new AudioInputMsg_NotifyStreamStateChanged(stream_id,
- kAudioStreamPaused));
+ media::kAudioStreamPaused));
}
// Delete the session entry.

Powered by Google App Engine
This is Rietveld 408576698