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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <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.
2 <div id="oauth-enroll-container">
3 <div id="oauth-enroll-step-signin">
4 <iframe id="oauth-enroll-signin-frame"
5 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.
6 marginwidth="0"
7 marginheight="0"
8 frameborder="0"
9 scrolling="no"></iframe>
10 </div>
11 <div id="oauth-enroll-step-working" class="oauth-enroll-step-center" hidden>
12 <div class="oauth-enroll-step-content">
13 <span class="oauth-enroll-step-icon">
14 <span class="oauth-enroll-spinner"></span>
15 </span>
16 <span class="oauth-enroll-step-message"
17 i18n-content="oauthEnrollWorking">
18 </span>
19 </div>
20 </div>
21 <div id="oauth-enroll-step-error" class="oauth-enroll-step-center" hidden>
22 <div class="oauth-enroll-step-content">
23 <span class="oauth-enroll-step-icon">
24 <img src="chrome://theme/IDR_ENROLL_FAILURE">
25 </span>
26 <span class="oauth-enroll-step-message">
27 <div id="oauth-enroll-error-message"></div>
28 <a id='oauth-enroll-error-retry'
29 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.
30 i18n-content="oauthEnrollRetry"></a>
31 </span>
32 </div>
33 </div>
34 <div id="oauth-enroll-step-success" class="oauth-enroll-step-center" hidden>
35 <div class="oauth-enroll-step-content">
36 <span class="oauth-enroll-step-icon">
37 <img src="chrome://theme/IDR_ENROLL_SUCCESS">
38 </span>
39 <span class="oauth-enroll-step-message"
40 i18n-content="oauthEnrollSuccess">
41 </span>
42 </div>
43 </div>
44 </div>
45 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698