diff options
Diffstat (limited to 'remoting/webapp/crd/js/client_plugin_impl.js')
-rw-r--r-- | remoting/webapp/crd/js/client_plugin_impl.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/remoting/webapp/crd/js/client_plugin_impl.js b/remoting/webapp/crd/js/client_plugin_impl.js index c2ba6c0..c9b2144 100644 --- a/remoting/webapp/crd/js/client_plugin_impl.js +++ b/remoting/webapp/crd/js/client_plugin_impl.js @@ -250,6 +250,9 @@ remoting.ClientPluginImpl.prototype.handleMessageMethod_ = function(message) { base.getStringAttr(message.data, 'capabilities')); handler.onSetCapabilities(capabilities); + } else if (message.method == 'onFirstFrameReceived') { + handler.onFirstFrameReceived(); + } } @@ -311,11 +314,6 @@ remoting.ClientPluginImpl.prototype.handleMessageMethod_ = function(message) { var item = base.getStringAttr(message.data, 'item'); this.updateClipboardData_(mimetype, item); - } else if (message.method == 'onFirstFrameReceived') { - if (remoting.clientSession) { - remoting.clientSession.onFirstFrameReceived(); - } - } else if (message.method == 'fetchPin') { // The pairingSupported value in the dictionary indicates whether both // client and host support pairing. If the client doesn't support pairing, |