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

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

Issue 7562008: Add new version of enrollment screen supporting OAuth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 9 years, 4 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.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
new file mode 100644
index 0000000000000000000000000000000000000000..327bae18b660c97fd3c4d46748c34914acb75a65
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment.html
@@ -0,0 +1,45 @@
+<div class="step right hidden" id="oauth-enrollment">
James Hawkins 2011/08/05 17:01:01 id should be specified first.
Mattias Nissler (ping if slow) 2011/08/08 16:38:47 Done.
+ <div id="oauth-enroll-container">
+ <div id="oauth-enroll-step-signin">
+ <iframe id="oauth-enroll-signin-frame"
+ src="about:blank"
James Hawkins 2011/08/05 17:01:01 Indentation is 4 spaces from the start of the tag.
Mattias Nissler (ping if slow) 2011/08/08 16:38:47 Done.
+ marginwidth="0"
+ marginheight="0"
+ frameborder="0"
+ scrolling="no"></iframe>
+ </div>
+ <div id="oauth-enroll-step-working" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <span class="oauth-enroll-spinner"></span>
+ </span>
+ <span class="oauth-enroll-step-message"
+ i18n-content="oauthEnrollWorking">
+ </span>
+ </div>
+ </div>
+ <div id="oauth-enroll-step-error" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <img src="chrome://theme/IDR_ENROLL_FAILURE">
+ </span>
+ <span class="oauth-enroll-step-message">
+ <div id="oauth-enroll-error-message"></div>
+ <a id='oauth-enroll-error-retry'
+ onclick="chrome.send('oauthEnrollRetry', []);"
whywhat 2011/08/05 07:24:58 nit: indent got off by one space here and on the n
Mattias Nissler (ping if slow) 2011/08/05 07:33:16 Actually, it's indented 4 spaces after a line brea
whywhat 2011/08/05 07:38:53 Ah, ok. I thought you wanted to align attributes l
Mattias Nissler (ping if slow) 2011/08/05 07:40:59 You are right, that's inconsistent. I'll fix the i
James Hawkins 2011/08/05 17:01:01 Move the JS to a .js file.
Mattias Nissler (ping if slow) 2011/08/08 16:38:47 Done.
+ i18n-content="oauthEnrollRetry"></a>
+ </span>
+ </div>
+ </div>
+ <div id="oauth-enroll-step-success" class="oauth-enroll-step-center" hidden>
+ <div class="oauth-enroll-step-content">
+ <span class="oauth-enroll-step-icon">
+ <img src="chrome://theme/IDR_ENROLL_SUCCESS">
+ </span>
+ <span class="oauth-enroll-step-message"
+ i18n-content="oauthEnrollSuccess">
+ </span>
+ </div>
+ </div>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698