Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / about_invalidations.html
blob7b8927197ffcb70586339141a59c12473901df96
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>Invalidations</title>
6 <script src="chrome://resources/js/cr.js"></script>
7 <script src="chrome://resources/js/parse_html_subset.js"></script>
8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://invalidations/about_invalidations.js"></script>
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" href="about_invalidations.css">
12 </head>
13 <body>
14 <h1>Invalidations Debug Information</h1>
15 <div id="invalidations-info">
16 <div id="states" class="section">
17 <span class="lead">Invalidation service state:</span>
18 <span id="invalidations-state"></span>
19 </div>
20 <div>
21 <span class="lead">Registered InvalidationHandlers:</span>
22 <span id="registered-handlers"></span>
23 </div>
24 <div id="objectsid-table-div" class="section">
25 <span class="lead">Registered objectsIds for invalidations:</span>
26 <table id="objectsid-table-container">
27 <!-- 'objectsidtable' can't have dashes in the name
28 as jstemplate can't deal with them-->
29 <thead>
30 <tr class="header">
31 <th>Registrar</th>
32 <th>Source</th>
33 <th>Name</th>
34 <th>Total Count</th>
35 <th>Session Count</th>
36 <th>Version</th>
37 <th>Time</th>
38 <th>Last Payload</th>
39 </tr>
40 </thead>
41 <tbody>
42 <tr jsselect="objectsidtable" jsvalues="class:$this.type">
43 <td jscontent="registrar" width=5%></td>
44 <td jscontent="source" width=5%></td>
45 <td jscontent="name" width=20%></td>
46 <td jscontent="totalCount" width=5%></td>
47 <td jscontent="sessionCount" width=5%></td>
48 <td jscontent="version" width=10%></td>
49 <td jscontent="time" width=20%></td>
50 <td jscontent="payload" width=30%></td>
51 </tr>
52 </tbody>
53 </table>
54 </div>
55 <div class="section">
56 <span class="lead">Invalidations Log:</span>
57 <textarea
58 id="invalidations-log" rows="10" cols="120"readonly></textarea>
59 </div>
60 <div class="section">
61 <span class="lead">Detailed Internal Status:
62 <button id="request-detailed-status">Refresh</button>
63 </span>
64 <textarea id="internal-display" rows="10" cols="120" readonly></textarea>
65 </div>
66 </div>
67 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
68 </body>
69 </html>