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

Unified Diff: chrome/browser/resources/hangout_services/thunk.js

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for tommi's Created 6 years, 7 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/browser/resources/hangout_services/thunk.js
diff --git a/chrome/browser/resources/hangout_services/thunk.js b/chrome/browser/resources/hangout_services/thunk.js
index 80457d4f00a95bfe8d18ebf3ec26bf99f4f7dff0..1890a81810eaad2da758be2eacecba1e502faf47 100644
--- a/chrome/browser/resources/hangout_services/thunk.js
+++ b/chrome/browser/resources/hangout_services/thunk.js
@@ -115,6 +115,18 @@ chrome.runtime.onMessageExternal.addListener(
doSendResponse(obj.nacl_arch);
});
return true;
+ } else if (method == 'startRtpDump') {
+ var incoming = message['incoming'] || false;
+ var outgoing = message['outgoing'] || false;
+ chrome.webrtcLoggingPrivate.startRtpDump(
+ sender.tab.id, origin, incoming, outgoing, doSendResponse);
+ return true;
+ } else if (method == 'stopRtpDump') {
+ var incoming = message['incoming'] || false;
+ var outgoing = message['outgoing'] || false;
+ chrome.webrtcLoggingPrivate.stopRtpDump(
+ sender.tab.id, origin, incoming, outgoing, doSendResponse);
+ return true;
}
throw new Error('Unknown method: ' + method);
} catch (e) {

Powered by Google App Engine
This is Rietveld 408576698