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

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

Issue 937593002: Changed identity API to use promises instead of callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
Index: remoting/webapp/crd/js/host_screen.js
diff --git a/remoting/webapp/crd/js/host_screen.js b/remoting/webapp/crd/js/host_screen.js
index e1ddda47abf6b858c55c2d7495f74e089b4a8fbf..183deb7f1884543312d7222909f8c9531ab3cd36 100644
--- a/remoting/webapp/crd/js/host_screen.js
+++ b/remoting/webapp/crd/js/host_screen.js
@@ -74,9 +74,9 @@ remoting.tryShare = function() {
*/
remoting.startHostUsingFacade_ = function(hostFacade) {
console.log('Attempting to share...');
- remoting.identity.callWithToken(
+ remoting.identity.getToken().then(
remoting.tryShareWithToken_.bind(null, hostFacade),
- remoting.showErrorMessage);
+ remoting.Error.handler(remoting.showErrorMessage));
}
/**

Powered by Google App Engine
This is Rietveld 408576698