summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-27 00:21:47 +0000
committerweitaosu@chromium.org <weitaosu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-27 00:21:47 +0000
commit901047a86ee222d8a193f4b76ee382709889b520 (patch)
tree97b3713e901076fd494a96c58083b9a2caef52f1 /remoting
parenta51d17a93cbdba2d61f0b437b17b3ec6ccb68f28 (diff)
downloadchromium_src-901047a86ee222d8a193f4b76ee382709889b520.zip
chromium_src-901047a86ee222d8a193f4b76ee382709889b520.tar.gz
chromium_src-901047a86ee222d8a193f4b76ee382709889b520.tar.bz2
Merge 252980 "Fix regression in pairing registry caused by crrev..."
> Fix regression in pairing registry caused by crrev.com/131643008. > > The pairing registry appears to be unsupported because supportedFeatures_ is always empty. > > BUG=345951 > > Review URL: https://codereview.chromium.org/175313005 TBR=weitaosu@chromium.org Review URL: https://codereview.chromium.org/182463002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/webapp/host_native_messaging.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/host_native_messaging.js b/remoting/webapp/host_native_messaging.js
index 102c32e..f4d2e3c 100644
--- a/remoting/webapp/host_native_messaging.js
+++ b/remoting/webapp/host_native_messaging.js
@@ -164,7 +164,7 @@ remoting.HostNativeMessaging.prototype.handleIncomingMessage_ =
this.version_ = getStringAttr(message, 'version');
// Old versions of the native messaging host do not return this list.
// Those versions default to the empty list of supported features.
- getArrayAttr(message, 'supportedFeatures', []);
+ this.supportedFeatures_ = getArrayAttr(message, 'supportedFeatures', []);
onDone();
break;