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

Side by Side Diff: chrome/browser/resources/sync_internals/about.html

Issue 210233005: sync: Display protocol events on about:sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit + unrelated bug Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 1
2 <div id="status"> 2 <div id="status">
3 <div id="dump"> 3 <div id="dump">
4 <button id="dump-status">Dump status</button> 4 <button id="dump-status">Dump status</button>
5 <input type="checkbox" id="include-ids"> 5 <input type="checkbox" id="include-ids">
6 Include Identifiers 6 Include Identifiers
7 </input> 7 </input>
8 </div> 8 </div>
9 <div id="import"> 9 <div id="import">
10 <button id="import-status">Import status</button> 10 <button id="import-status">Import status</button>
11 </div> 11 </div>
12 <div id="status-data"> 12 <div id="status-data">
13 <textarea rows="10" cols="30" id="status-text"></textarea> 13 <textarea rows="10" cols="30" id="status-text"></textarea>
14 </div> 14 </div>
15 </div> 15 </div>
16 16
17 <div id='aboutInfo'> 17 <div id='about-info'>
18 <div class="section" jsselect="details"> 18 <div class="section" jsselect="details">
19 <h2 jscontent="title"></h2> 19 <h2 jscontent="title"></h2>
20 <table class="aboutDetails"> 20 <table class="about-details">
21 <tr jsselect="data" 21 <tr jsselect="data"
22 jsvalues="class:$this.is_valid ? '' : 'uninitialized'" 22 jsvalues="class:$this.is_valid ? '' : 'uninitialized'">
23 jseval='highlightIfChanged(this, this.children[1].innerText, stat_va lue)'>
24 <td class="detail" jscontent="stat_name" width=50%></td> 23 <td class="detail" jscontent="stat_name" width=50%></td>
25 <td class="value" jscontent="stat_value" width=50%></td> 24 <td class="value" jscontent="stat_value" width=50%></td>
26 </tr> 25 </tr>
27 </table> 26 </table>
28 </div> 27 </div>
29 28
29 <div id="traffic-event-container-wrapper" jsskip="true">
30 <h2>Sync Protocol Log</h2>
31 <div id="traffic-event-container">
32 <div class="traffic-event-entry"
33 jsselect="events"
34 jseval="chrome.sync.about_tab.addExpandListener(this)">
35 <span class="time" jscontent="(new Date(time)).toLocaleString()"></span>
36 <span class="type" jscontent="type"></span>
37 <pre class="details" jscontent="details"></pre>
38 <pre class="proto" jscontent="JSON.stringify(proto, null, 2)"></pre>
39 </div>
40 </div>
41 </div>
42
30 <div class="section" style="overflow-x: auto"> 43 <div class="section" style="overflow-x: auto">
31 <h2>Type Info</h2> 44 <h2>Type Info</h2>
32 <table id="typeInfo"> 45 <table id="typeInfo">
33 <tr jsselect="type_status" jsvalues="class:$this.status"> 46 <tr jsselect="type_status" jsvalues="class:$this.status">
34 <td jscontent="name" width=50%></td> 47 <td jscontent="name" width=50%></td>
35 <td jscontent="value" width=30%></td> 48 <td jscontent="value" width=30%></td>
36 <td jscontent="num_entries" width=10%></td> 49 <td jscontent="num_entries" width=10%></td>
37 <td jscontent="num_live" width=10%></td> 50 <td jscontent="num_live" width=10%></td>
38 </tr> 51 </tr>
39 </table> 52 </table>
(...skipping 10 matching lines...) Expand all
50 <h2>Actionable Error</h2> 63 <h2>Actionable Error</h2>
51 <table id="actionableError"> 64 <table id="actionableError">
52 <tr jsselect="actionable_error"> 65 <tr jsselect="actionable_error">
53 <td jscontent="stat_name"></td> 66 <td jscontent="stat_name"></td>
54 <td jscontent="stat_value"></td> 67 <td jscontent="stat_value"></td>
55 </tr> 68 </tr>
56 </table> 69 </table>
57 </p> 70 </p>
58 </div> 71 </div>
59 </div> 72 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/about.css ('k') | chrome/browser/resources/sync_internals/about.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698