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

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

Issue 7497060: Support for guest signin and new user accounts in gaia signin screen. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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/screen_gaia_signin.html
===================================================================
--- chrome/browser/resources/chromeos/login/screen_gaia_signin.html (revision 96208)
+++ chrome/browser/resources/chromeos/login/screen_gaia_signin.html (working copy)
@@ -3,4 +3,15 @@
marginwidth="0"
marginheight="0"
frameborder="0"
- scrolling="no"></iframe></div>
+ scrolling="no"></iframe>
+ <div id="signin-right">
+ <div id="createAccount" class="signin-link"
+ i18n-content="createAccount" onclick="chrome.send('createAccount');">
xiyuan 2011/08/10 20:52:53 move onclick handler code into GaiaSigninScreen's
achuithb 2011/08/10 22:27:43 Done.
+ Create a Google Account
xiyuan 2011/08/10 20:52:53 Remove this since we have i18n-content already.
achuithb 2011/08/10 22:27:43 Done.
+ </div>
+ <div id="guestSignin" class="signin-link"
+ i18n-content="guestSignin" onclick="chrome.send('launchIncognito');">
xiyuan 2011/08/10 20:52:53 move onclick handler code into js.
achuithb 2011/08/10 22:27:43 Done.
+ Browse as Guest
xiyuan 2011/08/10 20:52:53 Remove this.
achuithb 2011/08/10 22:27:43 Done.
+ </div>
+</div>
+ </div>

Powered by Google App Engine
This is Rietveld 408576698