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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.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/throbber.css"> 8 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
9 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 9 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
10 <link rel="stylesheet" href="bubble.css"> 10 <link rel="stylesheet" href="bubble.css">
(...skipping 30 matching lines...) Expand all
41 <script src="oobe_screen_user_image.js"></script> 41 <script src="oobe_screen_user_image.js"></script>
42 <script src="oobe_screen_oauth_enrollment.js"></script> 42 <script src="oobe_screen_oauth_enrollment.js"></script>
43 <script src="screen_account_picker.js"></script> 43 <script src="screen_account_picker.js"></script>
44 <script src="screen_gaia_signin.js"></script> 44 <script src="screen_gaia_signin.js"></script>
45 <script src="screen_error_message.js"></script> 45 <script src="screen_error_message.js"></script>
46 <script src="user_pod_row.js"></script> 46 <script src="user_pod_row.js"></script>
47 </head> 47 </head>
48 <body i18n-values=".style.fontFamily:fontfamily;"> 48 <body i18n-values=".style.fontFamily:fontfamily;">
49 <include src="header_bar.html"> 49 <include src="header_bar.html">
50 <div id="outer-container"> 50 <div id="outer-container">
51 <div id="notification-area"> 51 <div id="notification-area">
Patrick Dubroy 2012/03/26 08:28:20 Maybe we should separate this into butter_bar.html
Mattias Nissler (ping if slow) 2012/03/26 13:08:26 Split out into notification_area.html
52 <div id="enterprise-info-container" class="butter-bar" hidden> 52 <div id="enterprise-info-container" class="butter-bar" hidden>
53 <span id="enterprise-info-message"></span> 53 <span id="enterprise-info-message"></span>
54 <!-- TODO(dubroy): Add "Learn more" link here. --> 54 <span id="enterprise-reporting-hint-container" hidden>
55 <span i18n-content="reportingHint"></span>
56 <a id="enterprise-reporting-hint-link" href="#"
57 i18n-content="learnMore"></a>
58 </span>
55 </div> 59 </div>
56 </div> 60 </div>
57 <div id="oobe" class="faded"> 61 <div id="oobe" class="faded">
58 <div id="header"> 62 <div id="header">
59 <span i18n-content="productName"></span> 63 <span i18n-content="productName"></span>
60 <div id="header-sections"></div> 64 <div id="header-sections"></div>
61 </div> 65 </div>
62 <hr class="top shadow"> 66 <hr class="top shadow">
63 <div id="inner-container"> 67 <div id="inner-container">
64 <include src="oobe_screen_network.html"> 68 <include src="oobe_screen_network.html">
(...skipping 29 matching lines...) Expand all
94 <p id="tpm-password" hidden></p> 98 <p id="tpm-password" hidden></p>
95 </div> 99 </div>
96 <button id="security-ok-button" i18n-content="eulaTpmOkButton"></button> 100 <button id="security-ok-button" i18n-content="eulaTpmOkButton"></button>
97 </div> 101 </div>
98 </div> 102 </div>
99 <div id="bubble" class="bubble faded" hidden></div> 103 <div id="bubble" class="bubble faded" hidden></div>
100 <include src="version.html"> 104 <include src="version.html">
101 <include src="user_pod_template.html"> 105 <include src="user_pod_template.html">
102 </body> 106 </body>
103 </html> 107 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698