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

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

Issue 11412067: [rlz,cros] RLZ glue for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Header guard Created 8 years 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;oobe:oobeType;screen:screenType;lockanimati ons:lockAnimationsType"> 2 <html i18n-values="dir:textdirection;oobe:oobeType;screen:screenType;lockanimati ons:lockAnimationsType;rlz:rlzEnabled">
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">
11 <link rel="stylesheet" href="header_bar.css"> 11 <link rel="stylesheet" href="header_bar.css">
12 <link rel="stylesheet" href="network_dropdown.css"> 12 <link rel="stylesheet" href="network_dropdown.css">
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <include src="oobe_screen_reset.html"> 76 <include src="oobe_screen_reset.html">
77 </div> 77 </div>
78 <hr class="bottom shadow"> 78 <hr class="bottom shadow">
79 <div id="footer"> 79 <div id="footer">
80 <div id="progress"></div> 80 <div id="progress"></div>
81 <div id="button-strip" class="button-strip"></div> 81 <div id="button-strip" class="button-strip"></div>
82 </div> 82 </div>
83 <div id="progress-dots" class="down"></div> 83 <div id="progress-dots" class="down"></div>
84 </div> 84 </div>
85 <div id="security-info"> 85 <div id="security-info">
86 <a id="security-link" href="#" i18n-content="eulaSystemSecuritySetting"> 86 <a id="security-link" href="#"
87 i18n-content="eulaSystemInstallationSettings">
87 </a> 88 </a>
88 </div> 89 </div>
89 </div> 90 </div>
90 <div id="popup-overlay" hidden> 91 <div id="popup-overlay" hidden>
91 <div id="security-info-popup"> 92 <div id="installation-settings-popup">
92 <h1 i18n-content="eulaSystemSecuritySetting"></h1> 93 <h1 i18n-content="eulaSystemInstallationSettings"></h1>
93 <div class="popup-content-area"> 94 <div class="popup-content-area">
94 <p i18n-content="eulaTpmDesc"></p> 95 <div id="tpm-settings">
95 <p i18n-content="eulaTpmKeyDesc"></p> 96 <p i18n-content="eulaTpmDesc"></p>
96 <div id="tpm-busy"> 97 <p i18n-content="eulaTpmKeyDesc"></p>
97 <div id="spinner" class="inline-spinner"></div> 98 <div id="tpm-busy">
98 <span i18n-content="eulaTpmBusy"></span> 99 <div id="spinner" class="inline-spinner"></div>
100 <span i18n-content="eulaTpmBusy"></span>
101 </div>
102 <p id="tpm-password"></p>
99 </div> 103 </div>
100 <p id="tpm-password" hidden></p> 104 <div id="rlz-settings">
105 <p id="rlz-desc" i18n-content="eulaRlzDesc"></p>
106 <input id="rlz-enable" type="checkbox" checked>
107 <label for="rlz-enable" i18n-content="eulaRlzEnable"></label>
108 </div>
101 </div> 109 </div>
102 <button id="security-ok-button" i18n-content="eulaTpmOkButton"></button> 110 <button id="installation-settings-ok-button"
111 i18n-content="eulaSystemInstallationSettingsOkButton">
112 </button>
103 </div> 113 </div>
104 </div> 114 </div>
105 <div id="bubble" class="bubble faded" hidden></div> 115 <div id="bubble" class="bubble faded" hidden></div>
106 <include src="header_bar.html"> 116 <include src="header_bar.html">
107 <include src="user_pod_template.html"> 117 <include src="user_pod_template.html">
108 </body> 118 </body>
109 </html> 119 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698