| 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 d03a8318240b5d247af9b2644509f7ede2326352..e979b50ce111dcc96096859311bc3795ba32357b 100644
|
| --- a/chrome/browser/resources/hangout_services/thunk.js
|
| +++ b/chrome/browser/resources/hangout_services/thunk.js
|
| @@ -167,6 +167,14 @@ chrome.runtime.onMessageExternal.addListener(
|
| chrome.webrtcLoggingPrivate.stopRtpDump(
|
| requestInfo, origin, incoming, outgoing, doSendResponse);
|
| return true;
|
| + } else if (method == 'logging.startAecDump') {
|
| + var seconds = message['seconds'] || 0;
|
| + chrome.webrtcLoggingPrivate.startAecDump(
|
| + seconds, doSendResponse);
|
| + return true;
|
| + } else if (method == 'logging.stopAecDump') {
|
| + chrome.webrtcLoggingPrivate.stopRtpDump(doSendResponse);
|
| + return true;
|
| }
|
| throw new Error('Unknown method: ' + method);
|
| } catch (e) {
|
|
|