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

Side by Side Diff: chrome/browser/resources/about_invalidations.html

Issue 159773006: [invalidations] Added table with registered objectsIds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@about_invalidations_clean
Patch Set: Better OwnerName for PushMessage Created 6 years, 10 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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Invalidations</title> 5 <title>Invalidations</title>
6 <script src="chrome://resources/js/cr.js"></script> 6 <script src="chrome://resources/js/cr.js"></script>
7 <script src="chrome://resources/js/parse_html_subset.js"></script> 7 <script src="chrome://resources/js/parse_html_subset.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://invalidations/about_invalidations.js"></script> 9 <script src="chrome://invalidations/about_invalidations.js"></script>
10 <link rel="stylesheet" href="about_invalidations.css"> 10 <link rel="stylesheet" href="about_invalidations.css">
11 </head> 11 </head>
12 <body> 12 <body>
13 <h1>Invalidations Debug Information</h1> 13 <h1>Invalidations Debug Information</h1>
14 <div id="invalidations-info"> 14 <div id="invalidations-info">
15 <div id="states" class="section"> 15 <div id="states" class="section">
16 <label> 16 <span class='lead'>Invalidation service state:</span>
17 <p>Invalidation service state:</p><span id="invalidations-state"></span> 17 <span id="invalidations-state"></span>
18 </label> 18 </div>
19 <div class="section" id="objectsid-table-div">
James Hawkins 2014/02/13 00:54:47 nit: ID first.
mferreria_g 2014/02/13 01:05:52 Done.
20 <span class='lead'>Registered objectsIds for invalidations:</span>
21 <table id="objectsid-table-container">
22 <!-- 'objectsidtable' can't have dashes in the name
23 as jstemplate can't deal with them-->
James Hawkins 2014/02/13 00:54:47 I think you can remove this comment. If someone t
mferreria_g 2014/02/13 01:05:52 I guess so, but it was quite hard to debug the fir
24 <tr jsselect="objectsidtable" jsvalues="class:$this.type">
25 <td jscontent="registrar" width=5%></td>
26 <td jscontent="source" width=5%></td>
27 <td jscontent="name" width=20%></td>
28 <td jscontent="count" width=5%></td>
29 <td jscontent="version" width=10%></td>
30 <td jscontent="time" width=20%></td>
31 <td jscontent="payload" width=35%></td>
32 </tr>
33 </table>
19 </div> 34 </div>
20 <div class="section"> 35 <div class="section">
21 <label> 36 <span class='lead'>Invalidations Log:</span>
22 <p>Invalidations Log:</p> 37 <textarea
23 <textarea 38 id="invalidations-log" rows="10" cols="120"readonly></textarea>
24 id="invalidations-log" rows="10" cols="120" readonly></textarea>
25 </label>
26 </div> 39 </div>
27 </div> 40 </div>
41 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
28 </body> 42 </body>
29 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698