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

Unified Diff: content/common/view_messages.h

Issue 12457043: Android implementation of WebAudio audio file decoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 9a3201509725e99baa7318f3da63cc22de93cf9a..d83b077dde887ed785df5bfd98f976ae48a34c5e 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -2355,6 +2355,11 @@ IPC_MESSAGE_ROUTED5(ViewHostMsg_UpdateFrameInfo,
IPC_MESSAGE_ROUTED1(ViewHostMsg_ImeBatchStateChanged_ACK,
bool /* is_begin */)
+// This message runs the MediaCodec for decoding audio for webaudio.
palmer 2013/04/11 20:29:51 Guard this in an #ifdef for OS_ANDROID.
Raymond Toy (Google) 2013/04/11 22:06:43 This is protected by line 2315.
+IPC_MESSAGE_CONTROL2(ViewHostMsg_RunWebAudioMediaCodec,
+ base::SharedMemoryHandle /* encoded_data_handle */,
+ base::FileDescriptor /* pcm_output */)
+
#elif defined(OS_MACOSX)
// Request that the browser load a font into shared memory for us.
IPC_SYNC_MESSAGE_CONTROL1_3(ViewHostMsg_LoadFont,

Powered by Google App Engine
This is Rietveld 408576698