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

Side by Side Diff: chrome/browser/resources/chromeos/login/login.html

Issue 9836039: Add reporting notification to the enterprise banner on the CrOS login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <title i18n-content="title"></title> 4 <title i18n-content="title"></title>
5 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link> 5 <link rel="stylesheet" href="chrome://resources/css/dialogs.css"></link>
6 <link rel="stylesheet" href="chrome://resources/css/list.css"> 6 <link rel="stylesheet" href="chrome://resources/css/list.css">
7 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 7 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
8 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 8 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
9 <link rel="stylesheet" href="bubble.css"> 9 <link rel="stylesheet" href="bubble.css">
10 <link rel="stylesheet" href="butter_bar.css"> 10 <link rel="stylesheet" href="butter_bar.css">
(...skipping 29 matching lines...) Expand all
40 <script src="screen_gaia_signin.js"></script> 40 <script src="screen_gaia_signin.js"></script>
41 <script src="screen_error_message.js"></script> 41 <script src="screen_error_message.js"></script>
42 <script src="user_pod_row.js"></script> 42 <script src="user_pod_row.js"></script>
43 </head> 43 </head>
44 <body class="login-display" i18n-values=".style.fontFamily:fontfamily;"> 44 <body class="login-display" i18n-values=".style.fontFamily:fontfamily;">
45 <include src="header_bar.html"> 45 <include src="header_bar.html">
46 <div id="outer-container"> 46 <div id="outer-container">
47 <div id="notification-area"> 47 <div id="notification-area">
48 <div id="enterprise-info-container" class="butter-bar" hidden> 48 <div id="enterprise-info-container" class="butter-bar" hidden>
49 <span id="enterprise-info-message"></span> 49 <span id="enterprise-info-message"></span>
50 <!-- TODO(dubroy): Add "Learn more" link here. --> 50 <span id="enterprise-reporting-hint-container" hidden>
51 <span i18n-content="reportingHint"></span>
52 <a id="enterprise-reporting-hint-link" href="#"
53 i18n-content="learnMore"></a>
54 </span>
51 </div> 55 </div>
52 </div> 56 </div>
53 <div id="oobe" class="faded"> 57 <div id="oobe" class="faded">
54 <div id="header"> 58 <div id="header">
55 <span i18n-content="productName"></span> 59 <span i18n-content="productName"></span>
56 <div id="header-sections"></div> 60 <div id="header-sections"></div>
57 </div> 61 </div>
58 <hr class="top shadow"> 62 <hr class="top shadow">
59 <div id="inner-container"> 63 <div id="inner-container">
60 <include src="oobe_screen_oauth_enrollment.html"> 64 <include src="oobe_screen_oauth_enrollment.html">
61 <include src="oobe_screen_user_image.html"> 65 <include src="oobe_screen_user_image.html">
62 <include src="screen_gaia_signin.html"> 66 <include src="screen_gaia_signin.html">
63 <include src="screen_account_picker.html"> 67 <include src="screen_account_picker.html">
64 <include src="screen_error_message.html"> 68 <include src="screen_error_message.html">
65 </div> 69 </div>
66 <hr class="bottom shadow"> 70 <hr class="bottom shadow">
67 <div id="footer"> 71 <div id="footer">
68 <div id="progress"></div> 72 <div id="progress"></div>
69 <div id="button-strip" class="button-strip"></div> 73 <div id="button-strip" class="button-strip"></div>
70 </div> 74 </div>
71 </div> 75 </div>
72 </div> 76 </div>
73 <div id="bubble" class="bubble faded" hidden></div> 77 <div id="bubble" class="bubble faded" hidden></div>
74 <include src="version.html"> 78 <include src="version.html">
75 <include src="user_pod_template.html"> 79 <include src="user_pod_template.html">
76 </body> 80 </body>
77 </html> 81 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698