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

Unified Diff: remoting/webapp/main.html

Issue 11769002: Apps v2 identity integration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed identity.js from html. Fixed patch. Created 7 years, 12 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/main.html
diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html
index 3936e796c1a6852e72803a708eeae7b22b0b3281..1a45c866ddef61deb11ef19245e99083ca076519 100644
--- a/remoting/webapp/main.html
+++ b/remoting/webapp/main.html
@@ -207,12 +207,33 @@ found in the LICENSE file.
</section> <!-- host-list-div -->
</div> <!-- home -->
- <div id="dialog-screen"
- data-ui-mode="home.host home.client home.auth home.history home.confirm-host-delete home.host-setup home.token-refresh-failed"
+ <div id="auth-dialog" hidden>
+ <div class="dialog-screen"></div>
+ <div class="dialog-container">
+ <div class="box-spacer"></div>
+ <div class="kd-modaldialog">
+ <h2 i18n-content="MODE_AUTHORIZE"></h2>
+ <p id="auth-error-message"
+ i18n-content="DESCRIPTION_AUTHORIZE"
+ class="message"></p>
+ <div class="centered">
+ <button id="auth-button"
+ type="button"
+ autofocus="autofocus"
+ i18n-content="CONTINUE_BUTTON">
+ </button>
+ </div>
+ </div>
+ <div class="box-spacer"></div>
+ </div>
+ </div> <!-- auth-dialog -->
+
+ <div class="dialog-screen"
+ data-ui-mode="home.host home.client home.history home.confirm-host-delete home.host-setup home.token-refresh-failed"
hidden></div>
- <div id="dialog-container"
- data-ui-mode="home.host home.client home.auth home.history home.confirm-host-delete home.host-setup home.token-refresh-failed"
+ <div class="dialog-container"
+ data-ui-mode="home.host home.client home.history home.confirm-host-delete home.host-setup home.token-refresh-failed"
hidden>
<div class="box-spacer"></div>
@@ -341,22 +362,6 @@ found in the LICENSE file.
</div>
</div> <!-- host-setup-dialog -->
- <div id="auth-dialog"
- data-ui-mode="home.auth"
- class="kd-modaldialog">
- <h2 i18n-content="MODE_AUTHORIZE"></h2>
- <p id="auth-error-message"
- i18n-content="DESCRIPTION_AUTHORIZE"
- class="message"></p>
- <div class="centered">
- <button id="auth-button"
- type="button"
- autofocus="autofocus"
- i18n-content="CONTINUE_BUTTON">
- </button>
- </div>
- </div> <!-- auth-dialog -->
-
<div id="host-dialog"
class="kd-modaldialog"
data-ui-mode="home.host">

Powered by Google App Engine
This is Rietveld 408576698