Index: chrome/common/cast_messages.h |
diff --git a/chrome/common/cast_messages.h b/chrome/common/cast_messages.h |
index 59694fbb76ae16c5b57dbe9193ccfc869b498a05..c46dccefa076ebf476df56d79ba212a57331a7ea 100644 |
--- a/chrome/common/cast_messages.h |
+++ b/chrome/common/cast_messages.h |
@@ -5,6 +5,8 @@ |
// IPC messages for the Cast transport API. |
// Multiply-included message file, hence no include guard. |
+#include <string> |
+ |
#include "ipc/ipc_message_macros.h" |
#include "media/cast/cast_sender.h" |
#include "media/cast/logging/logging_defines.h" |
@@ -148,10 +150,11 @@ IPC_MESSAGE_CONTROL3( |
uint32 /* ssrc */, |
uint32 /* frame_id */) |
-IPC_MESSAGE_CONTROL2( |
+IPC_MESSAGE_CONTROL3( |
CastHostMsg_New, |
int32 /* channel_id */, |
- net::IPEndPoint /*remote_end_point*/) |
+ net::IPEndPoint /* remote_end_point */, |
+ std::string /* options */) |
IPC_MESSAGE_CONTROL1( |
CastHostMsg_Delete, |