summaryrefslogtreecommitdiffstats
path: root/remoting/webapp
diff options
context:
space:
mode:
authorsimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-25 15:29:33 +0000
committersimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-25 15:29:33 +0000
commit72f8b1933c2b845adb359de1f841de108055a96e (patch)
tree2849d4ce7b13d64501a482124a312d827de6506f /remoting/webapp
parenta6709eb3616e9af71a12a4eb436e2a55358b6386 (diff)
downloadchromium_src-72f8b1933c2b845adb359de1f841de108055a96e.zip
chromium_src-72f8b1933c2b845adb359de1f841de108055a96e.tar.gz
chromium_src-72f8b1933c2b845adb359de1f841de108055a96e.tar.bz2
[Chromoting] Replace an '=' by '==' in the webapp.
Review URL: https://chromiumcodereview.appspot.com/10440042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139037 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp')
-rw-r--r--remoting/webapp/client_plugin_async.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/client_plugin_async.js b/remoting/webapp/client_plugin_async.js
index 1a8433e..d837cd5 100644
--- a/remoting/webapp/client_plugin_async.js
+++ b/remoting/webapp/client_plugin_async.js
@@ -179,7 +179,7 @@ remoting.ClientPluginAsync.prototype.handleMessage_ = function(messageStr) {
}
this.perfStats_ =
/** @type {remoting.ClientSession.PerfStats} */ message.data;
- } else if (message.method = 'injectClipboardItem') {
+ } else if (message.method == 'injectClipboardItem') {
if (typeof message.data['mimeType'] != 'string' ||
typeof message.data['item'] != 'string') {
console.error('Received incorrect injectClipboardItem message.');