| Index: trunk/src/remoting/webapp/client_session.js
|
| ===================================================================
|
| --- trunk/src/remoting/webapp/client_session.js (revision 271343)
|
| +++ trunk/src/remoting/webapp/client_session.js (working copy)
|
| @@ -363,17 +363,8 @@
|
| document.createElement('embed');
|
|
|
| plugin.id = id;
|
| - if (remoting.settings.CLIENT_PLUGIN_TYPE == 'pnacl') {
|
| - plugin.src = 'remoting_client_pnacl.nmf';
|
| - plugin.type = 'application/x-pnacl';
|
| - } else if (remoting.settings.CLIENT_PLUGIN_TYPE == 'nacl') {
|
| - plugin.src = 'remoting_client_nacl.nmf';
|
| - plugin.type = 'application/x-nacl';
|
| - } else {
|
| - plugin.src = 'about://none';
|
| - plugin.type = 'application/vnd.chromium.remoting-viewer';
|
| - }
|
| -
|
| + plugin.src = 'about://none';
|
| + plugin.type = 'application/vnd.chromium.remoting-viewer';
|
| plugin.width = 0;
|
| plugin.height = 0;
|
| plugin.tabIndex = 0; // Required, otherwise focus() doesn't work.
|
| @@ -1509,4 +1500,4 @@
|
| return remoting.windowFrame ?
|
| remoting.windowFrame.getClientArea() :
|
| { 'width': window.innerWidth, 'height': window.innerHeight };
|
| -}
|
| +}
|
|
|