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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Comments addressed. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html
index 3efd74548528b58ebcf8b35fbba008e6d28d1832..9b4d8aabb8ce63f6bfafc3974c77350171686fe4 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html
@@ -2,6 +2,8 @@
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
+
<div id="oauth-enrollment" class="step no-logo hidden" hidden>
<div id="oauth-enroll-step-contents">
<div id="oauth-enroll-step-signin">
@@ -9,24 +11,24 @@
</div>
<div id="oauth-enroll-step-error" role="alert">
<notification-card id="oauth-enroll-error-card" type="fail"
- i18n-values="buttonLabel:oauthEnrollRetry">
+ i18n-values="button-label:oauthEnrollRetry">
</notification-card>
</div>
<div id="oauth-enroll-step-success" role="alert">
<notification-card id="oauth-enroll-success-card" type="success"
- i18n-values="buttonLabel:oauthEnrollDone"
+ i18n-values="button-label:oauthEnrollDone"
i18n-content="oauthEnrollSuccess">
</notification-card>
</div>
<div id="oauth-enroll-step-attribute-prompt">
- <gaia-card id="oauth-enroll-attribute-prompt-card">
- <div class="header" flex vertical layout end-justified start>
+ <gaia-card id="oauth-enroll-attribute-prompt-card" class="fit">
+ <div class="header flex vertical layout end-justified">
<h1 class="welcome-message" style="text-transform:capitalize"
i18n-content="oauthEnrollScreenTitle"></h1>
<p class="enterprise-info"
i18n-content="oauthEnrollDeviceInformation"></p>
</div>
- <div class="footer" flex vertical layout justified>
+ <div class="footer flex vertical layout justified">
<div class="oauth-enroll-step-message">
<span id="oauth-enroll-attribute-prompt-message"
i18n-content="oauthEnrollAttributeExplanation"></span>
@@ -34,7 +36,7 @@
class="oauth-enroll-link"
i18n-content="oauthEnrollExplaneAttributeLink"></a>
<gaia-input-form id="oauth-enroll-attribute-input"
- i18n-values="buttonText:oauthEnrollNextBtn">
+ i18n-values="button-text:oauthEnrollNextBtn">
<gaia-input id="oauth-enroll-asset-id" type="text"
i18n-values="label:oauthEnrollAssetIdLabel">
</gaia-input>
@@ -51,7 +53,7 @@
</div>
<div id="oauth-enroll-step-attribute-prompt-error">
<notification-card id="oauth-enroll-attribute-prompt-error-card"
- type="fail" i18n-values="buttonLabel:oauthEnrollDone">
+ type="fail" i18n-values="button-label:oauthEnrollDone">
</notification-card>
</div>
</div>
@@ -59,12 +61,13 @@
<span id="oauth-saml-notice-message"></span>
</div>
<div id="oauth-enrollment-controls" class="step-controls"></div>
- <button id="oauth-enroll-back-button" is="gaia-icon-button" icon="arrow-back"
- hidden i18n-values="aria-label:backButton" tabindex="0"></button>
- <button id="oauth-enroll-cancel-button" is="gaia-icon-button" icon="close"
- class="oauth-enroll-button" i18n-values="aria-label:closeButton"
- tabindex="0"></button>
- <button id="oauth-enroll-refresh-button" is="gaia-icon-button" icon="refresh"
- class="oauth-enroll-button" i18n-values="aria-label:closeButton"
- tabindex="0"></button>
+ <gaia-icon-button id="oauth-enroll-back-button" icon="arrow-back" hidden
+ i18n-values="aria-label:backButton">
+ </gaia-icon-button>
+ <gaia-icon-button id="oauth-enroll-cancel-button" icon="close"
+ class="oauth-enroll-button" i18n-values="aria-label:closeButton">
+ </gaia-icon-button>
+ <gaia-icon-button id="oauth-enroll-refresh-button" icon="refresh"
+ class="oauth-enroll-button" i18n-values="aria-label:closeButton">
+ </gaia-icon-button>
</div>

Powered by Google App Engine
This is Rietveld 408576698