summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-17 20:44:34 +0000
committerjamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-17 20:44:34 +0000
commit5f532ef704ec16e76ef51296eaf2ae794f9a570d (patch)
tree9f34690b57d3633f11f028b610af41cb6dde08ed /remoting
parent683f427dbbd30a59c9026e6bab664792a19e723c (diff)
downloadchromium_src-5f532ef704ec16e76ef51296eaf2ae794f9a570d.zip
chromium_src-5f532ef704ec16e76ef51296eaf2ae794f9a570d.tar.gz
chromium_src-5f532ef704ec16e76ef51296eaf2ae794f9a570d.tar.bz2
Fix copy/paste error.
Review URL: https://codereview.chromium.org/240073005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264629 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/webapp/host_dispatcher.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/remoting/webapp/host_dispatcher.js b/remoting/webapp/host_dispatcher.js
index a156697..6861e38 100644
--- a/remoting/webapp/host_dispatcher.js
+++ b/remoting/webapp/host_dispatcher.js
@@ -334,8 +334,7 @@ remoting.HostDispatcher.prototype.getUsageStatsConsent =
remoting.HostDispatcher.prototype.installHost = function(onDone, onError) {
switch (this.state_) {
case remoting.HostDispatcher.State.UNKNOWN:
- this.pendingRequests_.push(
- this.startDaemon.bind(this, config, consent, onDone, onError));
+ this.pendingRequests_.push(this.installHost.bind(this, onDone, onError));
break;
case remoting.HostDispatcher.State.NATIVE_MESSAGING:
// Host already installed, no action needed.