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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_gaia_signin.html

Issue 2947263002: ChromeOS: GAIA screen should support API v2. (Closed)
Patch Set: Rebased. Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://oobe/custom_elements.html"> 1 <link rel="import" href="chrome://oobe/custom_elements.html">
2 2
3 <div class="step right hidden no-logo" id="gaia-signin" role="group" 3 <div class="step right hidden no-logo" id="gaia-signin" role="group"
4 aria-live="polite" hidden> 4 aria-live="polite" hidden>
5 <div class="step-contents"> 5 <link rel="stylesheet" href="oobe_dialog_parameters.css">
6 <oobe-dialog id="signin-frame-dialog" role="dialog" has-buttons no-header
7 no-footer-padding hidden>
8 <div id="signin-frame-container-v2" class="footer flex layout vertical">
9 </div>
10 <div class="bottom-buttons flex layout horizontal">
11 <oobe-back-button id="signin-back-button">
12 </oobe-back-button>
13 <div class="flex">
14 </div>
15 <oobe-next-button inverse disabled>
16 </oobe-next-button>
17 </div>
18 </oobe-dialog>
19 <div id="gaia-step-contents" class="step-contents">
6 <div id="gaia-signin-form-container"> 20 <div id="gaia-signin-form-container">
7 <webview id="signin-frame" name="signin-frame" hidden></webview> 21 <webview id="signin-frame" name="signin-frame" hidden></webview>
8 <offline-gaia id="offline-gaia" class="fit" hidden></offline-gaia> 22 <offline-gaia id="offline-gaia" class="fit" hidden></offline-gaia>
9 <saml-interstitial id="saml-interstitial" class="fit" hidden> 23 <saml-interstitial id="saml-interstitial" class="fit" hidden>
10 </saml-interstitial> 24 </saml-interstitial>
11 <offline-ad-login id="offline-ad-auth" class="fit" hidden 25 <offline-ad-login id="offline-ad-auth" class="fit" hidden
12 i18n-values="ad-welcome-message:adAuthWelcomeMessage"> 26 i18n-values="ad-welcome-message:adAuthWelcomeMessage">
13 </offline-ad-login> 27 </offline-ad-login>
14 </div> 28 </div>
15 </div> 29 </div>
16 <div id="gaia-loading" class="step-loading" hidden> 30 <div id="gaia-loading" class="step-loading" hidden>
17 <throbber-notice i18n-values="text:gaiaLoading"></throbber-notice> 31 <throbber-notice i18n-values="text:gaiaLoading"></throbber-notice>
18 </div> 32 </div>
19 <notification-card id="gaia-whitelist-error" type="fail" 33 <notification-card id="gaia-whitelist-error" type="fail"
20 i18n-values="button-label:tryAgainButton; 34 i18n-values="button-label:tryAgainButton;
21 link-label:learnMoreButton"> 35 link-label:learnMoreButton">
22 </notification-card> 36 </notification-card>
23 <div id="saml-notice-container" hidden> 37 <div id="saml-notice-container" hidden>
24 <span id="saml-notice-recording-indicator" hidden> 38 <span id="saml-notice-recording-indicator" hidden>
25 <img src="chrome://theme/IDR_TAB_RECORDING_INDICATOR"> 39 <img src="chrome://theme/IDR_TAB_RECORDING_INDICATOR">
26 </span> 40 </span>
27 <span id="saml-notice-message"></span> 41 <span id="saml-notice-message"></span>
28 </div> 42 </div>
29 <navigation-bar id="gaia-navigation"></navigation-bar> 43 <navigation-bar id="gaia-navigation"></navigation-bar>
30 </div> 44 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698