| Index: ppapi/proxy/ppapi_messages.h
|
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h
|
| index 4b51ab439752437fa66b40b6beb36a6f4232e050..2abc59ca35bd958227cca730fe4f91ae4a882613 100644
|
| --- a/ppapi/proxy/ppapi_messages.h
|
| +++ b/ppapi/proxy/ppapi_messages.h
|
| @@ -63,6 +63,7 @@
|
| #include "ppapi/shared_impl/file_growth.h"
|
| #include "ppapi/shared_impl/file_path.h"
|
| #include "ppapi/shared_impl/file_ref_create_info.h"
|
| +#include "ppapi/shared_impl/media_stream_audio_track_shared.h"
|
| #include "ppapi/shared_impl/media_stream_video_track_shared.h"
|
| #include "ppapi/shared_impl/ppapi_nacl_plugin_args.h"
|
| #include "ppapi/shared_impl/ppapi_preferences.h"
|
| @@ -244,6 +245,10 @@ IPC_STRUCT_TRAITS_BEGIN(ppapi::FlashSiteSetting)
|
| IPC_STRUCT_TRAITS_MEMBER(permission)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| +IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamAudioTrackShared::Attributes)
|
| + IPC_STRUCT_TRAITS_MEMBER(buffers)
|
| +IPC_STRUCT_TRAITS_END()
|
| +
|
| IPC_STRUCT_TRAITS_BEGIN(ppapi::MediaStreamVideoTrackShared::Attributes)
|
| IPC_STRUCT_TRAITS_MEMBER(buffers)
|
| IPC_STRUCT_TRAITS_MEMBER(width)
|
| @@ -1444,6 +1449,10 @@ IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply,
|
| // MediaStream -----------------------------------------------------------------
|
| IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamAudioTrack_CreateFromPendingHost,
|
| std::string /* track_id */)
|
| +IPC_MESSAGE_CONTROL1(
|
| + PpapiHostMsg_MediaStreamAudioTrack_Configure,
|
| + ppapi::MediaStreamAudioTrackShared::Attributes /* attributes */)
|
| +IPC_MESSAGE_CONTROL0(PpapiPluginMsg_MediaStreamAudioTrack_ConfigureReply)
|
| IPC_MESSAGE_CONTROL1(PpapiPluginMsg_MediaStreamVideoTrack_CreateFromPendingHost,
|
| std::string /* track_id */)
|
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_MediaStreamVideoTrack_Create)
|
|
|