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

Side by Side Diff: components/gcm_driver/resources/gcm_internals.html

Issue 2450383003: [GCM] Reset store on checkin rejection and add checkin state to internals (Closed)
Patch Set: Fix mcs probe Created 4 years, 1 month 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 i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>GCM Internals</title> 5 <title>GCM Internals</title>
6 <if expr="is_android"> 6 <if expr="is_android">
7 <meta name="viewport" content="width=device-width"> 7 <meta name="viewport" content="width=device-width">
8 </if> 8 </if>
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="gcm_internals.css"> 10 <link rel="stylesheet" href="gcm_internals.css">
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 </tr> 79 </tr>
80 <tr> 80 <tr>
81 <td> 81 <td>
82 Connection State 82 Connection State
83 </td> 83 </td>
84 <td id="connection-state"> 84 <td id="connection-state">
85 </td> 85 </td>
86 </tr> 86 </tr>
87 <tr> 87 <tr>
88 <td> 88 <td>
89 Last Checkin
90 </td>
91 <td id="last-checkin">
92 </td>
93 </tr>
94 <tr>
95 <td>
96 Next Checkin
97 </td>
98 <td id="next-checkin">
99 </td>
100 </tr>
101 <tr>
102 <td>
89 Registered App Ids 103 Registered App Ids
90 </td> 104 </td>
91 <td id="registered-app-ids"> 105 <td id="registered-app-ids">
92 </td> 106 </td>
93 </tr> 107 </tr>
94 <tr> 108 <tr>
95 <td> 109 <td>
96 Send Message Queue Size 110 Send Message Queue Size
97 </td> 111 </td>
98 <td id="send-queue-size"> 112 <td id="send-queue-size">
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 </tr> 209 </tr>
196 </thead> 210 </thead>
197 <tbody id="send-info"> 211 <tbody id="send-info">
198 </tbody> 212 </tbody>
199 </table> 213 </table>
200 </if> 214 </if>
201 215
202 <script src="chrome://resources/js/i18n_template.js"></script> 216 <script src="chrome://resources/js/i18n_template.js"></script>
203 </body> 217 </body>
204 </html> 218 </html>
OLDNEW
« no previous file with comments | « components/gcm_driver/gcm_internals_helper.cc ('k') | components/gcm_driver/resources/gcm_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698