| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 <th>From</th> | 161 <th>From</th> |
| 162 <th>Size (bytes)</th> | 162 <th>Size (bytes)</th> |
| 163 <th>Event</th> | 163 <th>Event</th> |
| 164 <th>Details</th> | 164 <th>Details</th> |
| 165 </tr> | 165 </tr> |
| 166 </thead> | 166 </thead> |
| 167 <tbody id="receive-info"> | 167 <tbody id="receive-info"> |
| 168 </tbody> | 168 </tbody> |
| 169 </table> | 169 </table> |
| 170 | 170 |
| 171 <h2>Message Decryption Failure Log</h2> | |
| 172 <table class="log-table"> | |
| 173 <thead> | |
| 174 <tr> | |
| 175 <th>Time</th> | |
| 176 <th>App Id</th> | |
| 177 <th>Details</th> | |
| 178 </tr> | |
| 179 </thead> | |
| 180 <tbody id="decryption-failure-info"> | |
| 181 </tbody> | |
| 182 </table> | |
| 183 | |
| 184 <if expr="not is_android"> | 171 <if expr="not is_android"> |
| 185 <h2>Send Message Log</h2> | 172 <h2>Send Message Log</h2> |
| 186 <table class="log-table"> | 173 <table class="log-table"> |
| 187 <thead> | 174 <thead> |
| 188 <tr> | 175 <tr> |
| 189 <th>Time</th> | 176 <th>Time</th> |
| 190 <th>App Id</th> | 177 <th>App Id</th> |
| 191 <th>Receiver Id</th> | 178 <th>Receiver Id</th> |
| 192 <th>Msg Id</th> | 179 <th>Msg Id</th> |
| 193 <th>Event</th> | 180 <th>Event</th> |
| 194 <th>Details</th> | 181 <th>Details</th> |
| 195 </tr> | 182 </tr> |
| 196 </thead> | 183 </thead> |
| 197 <tbody id="send-info"> | 184 <tbody id="send-info"> |
| 198 </tbody> | 185 </tbody> |
| 199 </table> | 186 </table> |
| 200 </if> | 187 </if> |
| 201 | 188 |
| 202 <script src="chrome://resources/js/i18n_template.js"></script> | 189 <script src="chrome://resources/js/i18n_template.js"></script> |
| 203 </body> | 190 </body> |
| 204 </html> | 191 </html> |
| OLD | NEW |