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

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

Issue 10389064: Added estimated time remaining on AU. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed license headers. Created 8 years, 7 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
OLDNEW
1 <div class="step right hidden" id="update"> 1 <div class="step right hidden" id="update">
2 <div id="update-cancel-hint" hidden> 2 <div id="update-cancel-hint" hidden>
3 <p i18n-content="cancelUpdateHint"></p> 3 <p i18n-content="cancelUpdateHint"></p>
4 </div> 4 </div>
5 <div id="update-screen-curtain"> 5 <div id="update-screen-curtain">
6 <p i18n-content="checkingForUpdates"></p> 6 <p i18n-content="checkingForUpdates"></p>
7 </div> 7 </div>
8 <div id="update-screen-main" hidden> 8 <div id="update-screen-main" hidden>
9 <p id="update-upper-label"></p> 9 <p id="update-upper-label"></p>
10 <progress id="update-progress-bar" max="100" value="0"></progress> 10 <progress id="update-progress-bar" max="100" value="0"></progress>
11 <div id="update-downloading-stats" class="update-stats-div" hidden>
12 <div class="update-stats-item">
13 <label for="update-estimated-time-left"
14 class="update-stats-label"
Nikita (slow) 2012/05/10 16:04:31 HTML attributes should not be formatted, just 4 sp
ygorshenin1 2012/05/11 12:42:50 Done.
15 i18n-content="updateEstimatedTimeLeft">
16 </label>
17 <label id="update-estimated-time-left"
18 i18n-content="updateStatsEstimating"></label>
19 </div>
20 <div class="update-stats-item">
21 <label for="update-downloading-rate"
22 class="update-stats-label"
23 i18n-content="updateDownloadingRate">
24 </label>
25 <label id="update-downloading-rate"
26 i18n-content="updateStatsEstimating"></label>
27 </div>
28 </div>
11 <p id="update-bottom-label" i18n-content="installingUpdateDesc"></p> 29 <p id="update-bottom-label" i18n-content="installingUpdateDesc"></p>
12 </div> 30 </div>
13 </div> 31 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698