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

Unified Diff: remoting/webapp/crd/js/credentials_provider.js

Issue 1008003002: [Webapp Refactor] Implements Me2MeConnectFlow as an object. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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 | « remoting/webapp/crd/js/crd_connect.js ('k') | remoting/webapp/crd/js/desktop_remoting.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/credentials_provider.js
diff --git a/remoting/webapp/crd/js/credentials_provider.js b/remoting/webapp/crd/js/credentials_provider.js
index 4a127ca79a221aafe38bcae215f500677ee8c243..7818f816b69eb00fe65dde8a026b463a30331426 100644
--- a/remoting/webapp/crd/js/credentials_provider.js
+++ b/remoting/webapp/crd/js/credentials_provider.js
@@ -6,7 +6,7 @@
var remoting = remoting || {};
-/** @typedef {{id: string, secret: string}} */
+/** @typedef {{clientId: string, sharedSecret: string}} */
remoting.PairingInfo;
/** @typedef {{token: string, secret: string}} */
@@ -60,7 +60,7 @@ remoting.CredentialsProvider.prototype.getAccessCode_ = function(
/** @returns {remoting.PairingInfo} */
remoting.CredentialsProvider.prototype.getPairingInfo = function() {
- return this.pairingInfo_ || { id: '', secret: ''};
+ return this.pairingInfo_ || { clientId: '', sharedSecret: ''};
};
/**
« no previous file with comments | « remoting/webapp/crd/js/crd_connect.js ('k') | remoting/webapp/crd/js/desktop_remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698