| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |