| Index: remoting/webapp/client_plugin.js
|
| diff --git a/remoting/webapp/client_plugin.js b/remoting/webapp/client_plugin.js
|
| index 93d4d615922027f2cf2f882d72cad1bfc5efa54b..584b6b23b18830cf3bac28b0124e9d47ec5e3e06 100644
|
| --- a/remoting/webapp/client_plugin.js
|
| +++ b/remoting/webapp/client_plugin.js
|
| @@ -57,6 +57,7 @@ remoting.ClientPlugin.Feature = {
|
| INJECT_KEY_EVENT: 'injectKeyEvent',
|
| NOTIFY_CLIENT_DIMENSIONS: 'notifyClientDimensions',
|
| PAUSE_VIDEO: 'pauseVideo',
|
| + PAUSE_AUDIO: 'pauseAudio',
|
| REMAP_KEY: 'remapKey',
|
| SEND_CLIPBOARD_ITEM: 'sendClipboardItem'
|
| };
|
| @@ -153,3 +154,11 @@ remoting.ClientPlugin.prototype.notifyClientDimensions =
|
| */
|
| remoting.ClientPlugin.prototype.pauseVideo =
|
| function(pause) {};
|
| +
|
| +/**
|
| + * Requests that the host pause or resume sending audio updates.
|
| + *
|
| + * @param {boolean} pause True to suspend audio updates, false otherwise.
|
| + */
|
| +remoting.ClientPlugin.prototype.pauseAudio =
|
| + function(pause) {};
|
|
|