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

Unified Diff: chrome/browser/resources/chromeos/power.html

Issue 140663004: [chromeos] Add a battery discharge rate plot to about:power page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comment Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/chromeos/power.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/power.html
diff --git a/chrome/browser/resources/chromeos/power.html b/chrome/browser/resources/chromeos/power.html
index 4cb33da63164122903741fefb73888505c686539..3eefcdf9959f58ffeea45105f62fc3ec2cec401c 100644
--- a/chrome/browser/resources/chromeos/power.html
+++ b/chrome/browser/resources/chromeos/power.html
@@ -12,10 +12,19 @@
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div id="main-layout">
<div id="battery-charge-section">
- <h3 i18n-content="batteryChargeHeader"></h3>
+ <h3 i18n-content="batteryChargePercentageHeader"></h3>
<div class="plot-canvas-div">
- <canvas id="battery-charge-canvas" width="600" height="200"></canvas>
+ <canvas id="battery-charge-percentage-canvas" width="600" height="200">
+ </canvas>
</div>
+
+ <h3 i18n-content="batteryDischargeRateHeader"></h3>
+ <p i18n-content="negativeDischargeRateInfo"></p>
+ <div class="plot-canvas-div">
+ <canvas id="battery-discharge-rate-canvas" width="600" height="200">
+ </canvas>
+ </div>
+
<button id="battery-charge-reload-button" class="reload-button"
i18n-content="reloadButton">
</button>
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/chromeos/power.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698