| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html i18n-values="dir:textdirection;lang:language"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>GCM Internals</title> | |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
| 7 <link rel="stylesheet" href="gcm_internals.css"> | |
| 8 <script src="chrome://resources/js/cr.js"></script> | |
| 9 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 10 <script src="chrome://resources/js/cr/ui.js"></script> | |
| 11 <script src="chrome://resources/js/util.js"></script> | |
| 12 <script src="strings.js"></script> | |
| 13 <script src="gcm_internals.js"></script> | |
| 14 </head> | |
| 15 <body> | |
| 16 <h1>GCM Internals</h1> | |
| 17 <div class="flexbar"> | |
| 18 <button id="refresh">Refresh</button> | |
| 19 <button id="recording">Start Recording</button> | |
| 20 <button id="clear-logs">Clear All Logs</button> | |
| 21 </div> | |
| 22 | |
| 23 <h2>Device Info</h2> | |
| 24 <table id="device-info"> | |
| 25 <tbody> | |
| 26 <tr> | |
| 27 <td> | |
| 28 Android Id | |
| 29 </td> | |
| 30 <td id="android-id"> | |
| 31 </td> | |
| 32 </tr> | |
| 33 <tr> | |
| 34 <td> | |
| 35 User Profile Service Created | |
| 36 </td> | |
| 37 <td id="profile-service-created"> | |
| 38 </td> | |
| 39 </tr> | |
| 40 <tr> | |
| 41 <td> | |
| 42 GCM Enabled | |
| 43 </td> | |
| 44 <td id="gcm-enabled"> | |
| 45 </td> | |
| 46 </tr> | |
| 47 <tr> | |
| 48 <td> | |
| 49 GCM Client Created | |
| 50 </td> | |
| 51 <td id="gcm-client-created"> | |
| 52 </td> | |
| 53 </tr> | |
| 54 <tr> | |
| 55 <td> | |
| 56 GCM Client State | |
| 57 </td> | |
| 58 <td id="gcm-client-state"> | |
| 59 </td> | |
| 60 </tr> | |
| 61 <tr> | |
| 62 <td> | |
| 63 Connection Client Created | |
| 64 </td> | |
| 65 <td id="connection-client-created"> | |
| 66 </td> | |
| 67 </tr> | |
| 68 <tr> | |
| 69 <td> | |
| 70 Connection State | |
| 71 </td> | |
| 72 <td id="connection-state"> | |
| 73 </td> | |
| 74 </tr> | |
| 75 <tr> | |
| 76 <td> | |
| 77 Registered App Ids | |
| 78 </td> | |
| 79 <td id="registered-app-ids"> | |
| 80 </td> | |
| 81 </tr> | |
| 82 <tr> | |
| 83 <td> | |
| 84 Send Message Queue Size | |
| 85 </td> | |
| 86 <td id="send-queue-size"> | |
| 87 </td> | |
| 88 </tr> | |
| 89 <tr> | |
| 90 <td> | |
| 91 Resend Message Queue Size | |
| 92 </td> | |
| 93 <td id="resend-queue-size"> | |
| 94 </td> | |
| 95 </tr> | |
| 96 </tbody> | |
| 97 </table> | |
| 98 | |
| 99 <h2>Check-in Log</h2> | |
| 100 <table class="log-table"> | |
| 101 <thead> | |
| 102 <tr> | |
| 103 <th>Time</th> | |
| 104 <th>Event</th> | |
| 105 <th>Details</th> | |
| 106 </tr> | |
| 107 </thead> | |
| 108 <tbody id="checkin-info"> | |
| 109 </tbody> | |
| 110 </table> | |
| 111 | |
| 112 <h2>Connection Log</h2> | |
| 113 <table class="log-table"> | |
| 114 <thead> | |
| 115 <tr> | |
| 116 <th>Time</th> | |
| 117 <th>Event</th> | |
| 118 <th>Details</th> | |
| 119 </tr> | |
| 120 </thead> | |
| 121 <tbody id="connection-info"> | |
| 122 </tbody> | |
| 123 </table> | |
| 124 | |
| 125 <h2>Registration Log</h2> | |
| 126 <table class="log-table"> | |
| 127 <thead> | |
| 128 <tr> | |
| 129 <th>Time</th> | |
| 130 <th>App Id</th> | |
| 131 <th>Source</th> | |
| 132 <th>Event</th> | |
| 133 <th>Details</th> | |
| 134 </tr> | |
| 135 </thead> | |
| 136 <tbody id="registration-info"> | |
| 137 </tbody> | |
| 138 </table> | |
| 139 | |
| 140 <h2>Receive Message Log</h2> | |
| 141 <table class="log-table"> | |
| 142 <thead> | |
| 143 <tr> | |
| 144 <th>Time</th> | |
| 145 <th>App Id</th> | |
| 146 <th>From</th> | |
| 147 <th>Size (bytes)</th> | |
| 148 <th>Event</th> | |
| 149 <th>Details</th> | |
| 150 </tr> | |
| 151 </thead> | |
| 152 <tbody id="receive-info"> | |
| 153 </tbody> | |
| 154 </table> | |
| 155 | |
| 156 <h2>Send Message Log</h2> | |
| 157 <table class="log-table"> | |
| 158 <thead> | |
| 159 <tr> | |
| 160 <th>Time</th> | |
| 161 <th>App Id</th> | |
| 162 <th>Receiver Id</th> | |
| 163 <th>Msg Id</th> | |
| 164 <th>Event</th> | |
| 165 <th>Details</th> | |
| 166 </tr> | |
| 167 </thead> | |
| 168 <tbody id="send-info"> | |
| 169 </tbody> | |
| 170 </table> | |
| 171 | |
| 172 <script src="chrome://resources/js/i18n_template.js"></script> | |
| 173 </body> | |
| 174 </html> | |
| OLD | NEW |