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

Unified Diff: chrome/common/cast_messages.h

Issue 551883004: Cast: Let the extension control if DSCP is on or off. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Now uses DictionaryValue Created 6 years, 3 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: chrome/common/cast_messages.h
diff --git a/chrome/common/cast_messages.h b/chrome/common/cast_messages.h
index b1b9f5a9f41c33c8513e82a61627951377cb46ec..59da245174c98f39988e0b21494429c6c8e4db91 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>
Alpha Left Google 2014/09/09 20:15:12 Is this still needed?
hubbe 2014/09/09 20:45:14 no
+
#include "ipc/ipc_message_macros.h"
#include "media/cast/cast_sender.h"
#include "media/cast/logging/logging_defines.h"
@@ -141,10 +143,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 */,
+ base::DictionaryValue /* options */)
IPC_MESSAGE_CONTROL1(
CastHostMsg_Delete,

Powered by Google App Engine
This is Rietveld 408576698