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

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

Issue 1616113003: List message decryption failures on chrome://gcm-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase after CL 1619053003 Created 4 years, 11 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 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
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
171 <if expr="not is_android"> 184 <if expr="not is_android">
172 <h2>Send Message Log</h2> 185 <h2>Send Message Log</h2>
173 <table class="log-table"> 186 <table class="log-table">
174 <thead> 187 <thead>
175 <tr> 188 <tr>
176 <th>Time</th> 189 <th>Time</th>
177 <th>App Id</th> 190 <th>App Id</th>
178 <th>Receiver Id</th> 191 <th>Receiver Id</th>
179 <th>Msg Id</th> 192 <th>Msg Id</th>
180 <th>Event</th> 193 <th>Event</th>
181 <th>Details</th> 194 <th>Details</th>
182 </tr> 195 </tr>
183 </thead> 196 </thead>
184 <tbody id="send-info"> 197 <tbody id="send-info">
185 </tbody> 198 </tbody>
186 </table> 199 </table>
187 </if> 200 </if>
188 201
189 <script src="chrome://resources/js/i18n_template.js"></script> 202 <script src="chrome://resources/js/i18n_template.js"></script>
190 </body> 203 </body>
191 </html> 204 </html>
OLDNEW
« no previous file with comments | « components/gcm_driver/gcm_stats_recorder_impl_unittest.cc ('k') | components/gcm_driver/resources/gcm_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698