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

Side by Side Diff: chrome/browser/resources/browser_signin.html

Issue 7748038: Remove BrowserSignin, as it's not used anywhere. (Closed) Base URL: svn://svn.chromium.org/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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <style>
3 body {
4 margin: 0;
5 font-family: arial,sans-serif;
6 }
7 #message {
8 position: absolute;
9 left: 10px;
10 width: 45%;
11 }
12 #login {
13 position: absolute;
14 left: 50%;
15 }
16 #message h1 {
17 font-size: medium;
18 }
19 #message p {
20 font-size: smaller;
21 }
22 </style>
23 <script>
24 function initmessage() {
25 document.getElementById('message').innerHTML = chrome.dialogArguments;
26 }
27
28 function init() {
29 chrome.send('SigninInit');
30 initmessage();
31 }
32 </script>
33 <body onload="init();">
34 <div id="message"></div>
35 <iframe id="login" frameborder="0" width="50%" scrolling="no" height="100%"
36 src="chrome://syncresources/gaialogin" tabindex="-1"></iframe>
37 </body>
38 </html>
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/ui/webui/options/personal_options_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698