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

Unified Diff: remoting/webapp/client_screen.js

Issue 9129009: Change tool-bar behaviour to click-to-show. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed linter errors and comment. Created 8 years, 11 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/client_screen.js
diff --git a/remoting/webapp/client_screen.js b/remoting/webapp/client_screen.js
index 3577f7944771a59bca67bad33d27df1e3e0a0fbc..b10e9af39ad20a72a9bfb7433680526b18493812 100644
--- a/remoting/webapp/client_screen.js
+++ b/remoting/webapp/client_screen.js
@@ -288,7 +288,7 @@ function startSession_() {
remoting.clientSession =
new remoting.ClientSession(
remoting.hostJid, remoting.hostPublicKey,
- remoting.accessCode, "v1_token", "",
+ remoting.accessCode, 'v1_token', '',
/** @type {string} */ (remoting.oauth2.getCachedEmail()),
remoting.ClientSession.Mode.IT2ME,
onClientStateChange_);
@@ -422,7 +422,7 @@ remoting.connectMe2Me = function(hostId, retryIfOffline) {
// TODO(jamiewalch): Reinstate the PIN screen once it's supported.
// remoting.setMode(remoting.AppMode.CLIENT_PIN_PROMPT);
remoting.connectMe2MeWithPin();
-}
+};
/**
* Start a connection to the specified host, using the cached details
@@ -462,7 +462,7 @@ function connectMe2MeWithAccessToken_(token) {
remoting.clientSession =
new remoting.ClientSession(
remoting.hostJid, remoting.hostPublicKey,
- pin, "v1_token", remoting.hostId,
+ pin, 'v1_token', remoting.hostId,
/** @type {string} */ (remoting.oauth2.getCachedEmail()),
remoting.ClientSession.Mode.ME2ME, onClientStateChange_);
remoting.clientSession.createPluginAndConnect(

Powered by Google App Engine
This is Rietveld 408576698