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

Unified Diff: content/browser/media/webrtc_internals.cc

Issue 396193005: Converts RTCOfferOptions to constriants in the glue code for createOffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/browser/media/webrtc_internals.cc
diff --git a/content/browser/media/webrtc_internals.cc b/content/browser/media/webrtc_internals.cc
index dcfc9051ab2a06c4f67ef11d03a4f1d28a316fe6..03afc1103d3ed282d457b190b7a7016a687acd86 100644
--- a/content/browser/media/webrtc_internals.cc
+++ b/content/browser/media/webrtc_internals.cc
@@ -67,7 +67,7 @@ void WebRTCInternals::OnAddPeerConnection(int render_process_id,
ProcessId pid,
int lid,
const string& url,
- const string& servers,
+ const string& rtc_configuration,
vrk (LEFT CHROMIUM) 2014/07/23 01:13:05 It looks like this also modifies updates webrtc-in
jiayl 2014/07/23 16:11:12 It is, since this CL also add RTCTransportType, wh
const string& constraints) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -78,7 +78,7 @@ void WebRTCInternals::OnAddPeerConnection(int render_process_id,
dict->SetInteger("rid", render_process_id);
dict->SetInteger("pid", static_cast<int>(pid));
dict->SetInteger("lid", lid);
- dict->SetString("servers", servers);
+ dict->SetString("rtcConfiguration", rtc_configuration);
dict->SetString("constraints", constraints);
dict->SetString("url", url);
peer_connection_data_.Append(dict);

Powered by Google App Engine
This is Rietveld 408576698