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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 chrome.runtime.onMessageExternal.addListener( 5 chrome.runtime.onMessageExternal.addListener(
6 function(message, sender, sendResponse) { 6 function(message, sender, sendResponse) {
7 function doSendResponse(value, error) { 7 function doSendResponse(value, error) {
8 var errorMessage = error || chrome.extension.lastError; 8 var errorMessage = error || chrome.extension.lastError;
9 sendResponse({'value': value, 'error': errorMessage}); 9 sendResponse({'value': value, 'error': errorMessage});
10 } 10 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // check if it's loaded; if it's not, the extension system will 108 // check if it's loaded; if it's not, the extension system will
109 // call the callback with no arguments and set 109 // call the callback with no arguments and set
110 // chrome.runtime.lastError. 110 // chrome.runtime.lastError.
111 doSendResponse(); 111 doSendResponse();
112 return false; 112 return false;
113 } else if (method == 'getNaclArchitecture') { 113 } else if (method == 'getNaclArchitecture') {
114 chrome.runtime.getPlatformInfo(function(obj) { 114 chrome.runtime.getPlatformInfo(function(obj) {
115 doSendResponse(obj.nacl_arch); 115 doSendResponse(obj.nacl_arch);
116 }); 116 });
117 return true; 117 return true;
118 } else if (method == 'startRtpDump') {
119 var incoming = message['incoming'] || false;
120 var outgoing = message['outgoing'] || false;
121 chrome.webrtcLoggingPrivate.startRtpDump(
122 sender.tab.id, origin, incoming, outgoing, doSendResponse);
123 return true;
124 } else if (method == 'stopRtpDump') {
125 var incoming = message['incoming'] || false;
126 var outgoing = message['outgoing'] || false;
127 chrome.webrtcLoggingPrivate.stopRtpDump(
128 sender.tab.id, origin, incoming, outgoing, doSendResponse);
129 return true;
118 } 130 }
119 throw new Error('Unknown method: ' + method); 131 throw new Error('Unknown method: ' + method);
120 } catch (e) { 132 } catch (e) {
121 doSendResponse(null, e.name + ': ' + e.message); 133 doSendResponse(null, e.name + ': ' + e.message);
122 } 134 }
123 } 135 }
124 ); 136 );
125 137
126 // If Hangouts connects with a port named 'onSinksChangedListener', we 138 // If Hangouts connects with a port named 'onSinksChangedListener', we
127 // will register a listener and send it a message {'eventName': 139 // will register a listener and send it a message {'eventName':
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 onSinksChangedPort(port); 225 onSinksChangedPort(port);
214 } else if (port.name == 'chooseDesktopMedia') { 226 } else if (port.name == 'chooseDesktopMedia') {
215 onChooseDesktopMediaPort(port); 227 onChooseDesktopMediaPort(port);
216 } else if (port.name == 'processCpu') { 228 } else if (port.name == 'processCpu') {
217 onProcessCpu(port); 229 onProcessCpu(port);
218 } else { 230 } else {
219 // Unknown port type. 231 // Unknown port type.
220 port.disconnect(); 232 port.disconnect();
221 } 233 }
222 }); 234 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698