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

Unified Diff: content/common/media/audio_messages.h

Issue 9805001: Move media/audio files into media namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix various compiler errors Created 8 years, 9 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/common/media/audio_messages.h
diff --git a/content/common/media/audio_messages.h b/content/common/media/audio_messages.h
index bac2537eb13d9d2abb9ed7d3d0b1269ff5059287..ca21c0f24f2b45efd7937bc038b9015a8e7ac36e 100644
--- a/content/common/media/audio_messages.h
+++ b/content/common/media/audio_messages.h
@@ -21,7 +21,7 @@
IPC_ENUM_TRAITS(AudioStreamState)
-IPC_STRUCT_TRAITS_BEGIN(AudioBuffersState)
+IPC_STRUCT_TRAITS_BEGIN(media::AudioBuffersState)
IPC_STRUCT_TRAITS_MEMBER(pending_bytes)
IPC_STRUCT_TRAITS_MEMBER(hardware_delay_bytes)
IPC_STRUCT_TRAITS_END()
@@ -88,12 +88,12 @@ IPC_MESSAGE_CONTROL2(AudioInputMsg_NotifyDeviceStarted,
// Request that got sent to browser for creating an audio output stream
IPC_MESSAGE_CONTROL2(AudioHostMsg_CreateStream,
int /* stream_id */,
- AudioParameters /* params */)
+ media::AudioParameters /* params */)
// Request that got sent to browser for creating an audio input stream
IPC_MESSAGE_CONTROL3(AudioInputHostMsg_CreateStream,
int /* stream_id */,
- AudioParameters /* params */,
+ media::AudioParameters /* params */,
std::string /* device_id */)
// Start buffering and play the audio stream specified by stream_id.

Powered by Google App Engine
This is Rietveld 408576698