| 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 db1500699075e443f08832d10c624a107c05bacb..c27428171f87e0cf15445268022789bcd9a0a3d6 100644
|
| --- a/chrome/browser/resources/hangout_services/thunk.js
|
| +++ b/chrome/browser/resources/hangout_services/thunk.js
|
| @@ -172,7 +172,17 @@ chrome.runtime.onMessageExternal.addListener(
|
| chrome.webrtcLoggingPrivate.stopAudioDebugRecordings(
|
| requestInfo, origin, doSendResponse);
|
| return true;
|
| + } else if (method == 'logging.startRtcEventLogging') {
|
| + var seconds = message['seconds'] || 0;
|
| + chrome.webrtcLoggingPrivate.startRtcEventLogging(
|
| + requestInfo, origin, seconds, doSendResponse);
|
| + return true;
|
| + } else if (method == 'logging.stopRtcEventLogging') {
|
| + chrome.webrtcLoggingPrivate.stopRtcEventLogging(
|
| + requestInfo, origin, doSendResponse);
|
| + return true;
|
| }
|
| +
|
| throw new Error('Unknown method: ' + method);
|
| } catch (e) {
|
| doSendResponse(null, e.name + ': ' + e.message);
|
|
|