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

Unified Diff: chrome/renderer/media/cast_session.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: 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/renderer/media/cast_session.h
diff --git a/chrome/renderer/media/cast_session.h b/chrome/renderer/media/cast_session.h
index ae68223fa566872d5b38d00690e42dd99f20ac84..46830a42414d8fdae9df3d7c270139a517bec045 100644
--- a/chrome/renderer/media/cast_session.h
+++ b/chrome/renderer/media/cast_session.h
@@ -67,8 +67,11 @@ class CastSession : public base::RefCounted<CastSession> {
const ErrorCallback& error_callback);
// This will create the Cast transport and connect to |remote_endpoint|.
+ // |options| is a colon-separated string opftions passed down to the
+ // cast udp transport.
// Must be called before initialization of audio or video.
- void StartUDP(const net::IPEndPoint& remote_endpoint);
+ void StartUDP(const net::IPEndPoint& remote_endpoint,
+ const std::string& options);
Alpha Left Google 2014/09/09 00:30:45 I suggest this be base::DictionaryValue which is a
hubbe 2014/09/09 20:10:01 Done.
// Creates or destroys event subscriber for the audio or video stream.
// |is_audio|: true if the event subscriber is for audio. Video otherwise.

Powered by Google App Engine
This is Rietveld 408576698