Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: remoting/webapp/me2mom/client_session.js

Issue 7331005: Fixed version check in client_session.js (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/me2mom/client_session.js
diff --git a/remoting/webapp/me2mom/client_session.js b/remoting/webapp/me2mom/client_session.js
index 87102682d79a0264840d14420d41fb321b4c2a6d..986f5e09f89dcf7074a65e3f103254dcf4b781be 100644
--- a/remoting/webapp/me2mom/client_session.js
+++ b/remoting/webapp/me2mom/client_session.js
@@ -229,7 +229,7 @@ remoting.ClientSession.prototype.registerConnection_ =
that.clientJid = xhr.responseText;
// TODO(ajwong): Remove old version support.
- if (that.plugin.API_VERSION_ >= 2) {
+ if (that.plugin.apiVersion >= 2) {
that.plugin.connect(that.hostJid, that.hostPublicKey, that.clientJid,
that.accessCode);
} else {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698