Commit d1f87803 authored by garykac@chromium.org's avatar garykac@chromium.org

[Chromoting] Fix jscompiler warnings in client_plugin_async.js

BUG=None
TEST=jscompiler reports no warnings.


Review URL: https://chromiumcodereview.appspot.com/10796097

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148004 0039d316-1c4b-4281-b951-d872f2087c98
parent 9e35a6bb
...@@ -203,7 +203,8 @@ remoting.ClientPluginAsync.prototype.handleMessage_ = function(messageStr) { ...@@ -203,7 +203,8 @@ remoting.ClientPluginAsync.prototype.handleMessage_ = function(messageStr) {
console.error('Received incorrect onConnectionReady message.'); console.error('Received incorrect onConnectionReady message.');
return; return;
} }
this.onConnectionReadyHandler(message.data['ready']); var ready = /** @type {boolean} */ message.data['ready'];
this.onConnectionReadyHandler(ready);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment