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

Side by Side Diff: chrome/browser/resources/task_scheduler_internals/index.html

Issue 2420973002: Plumb Task Scheduler Histograms to the Task Scheduler Internals Page (Closed)
Patch Set: The Return of std::move Created 4 years, 2 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Task Scheduler Internals</title> 4 <title>Task Scheduler Internals</title>
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="index.css">
7 <script src="chrome://resources/js/util.js"></script>
8 <script src="index.js"></script>
6 </head> 9 </head>
7 <body> 10 <body>
8 <h1>Task Scheduler Internals</h1> 11 <h1>Task Scheduler Internals</h1>
9 Status: $i18n{status} 12 <div>Status: <span id="status"></span></div>
13 <div id="details" hidden>
14 <h2>Histograms</h2>
15 <div id="histogram-container"></div>
16 </div>
10 </body> 17 </body>
11 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698