| 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) { | 
|  |