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

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

Issue 6973043: [Sync] Tweaks to About tab of chrome://sync-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <script> 1 <script>
2 (function () { 2 (function () {
3 // Contains the latest snapshot of sync about info. 3 // Contains the latest snapshot of sync about info.
4 chrome.sync.aboutInfo = {}; 4 chrome.sync.aboutInfo = {};
5 5
6 // TODO(akalin): Make aboutInfo have key names likeThis and not 6 // TODO(akalin): Make aboutInfo have key names likeThis and not
7 // like_this. 7 // like_this.
8 function refreshAboutInfo(aboutInfo) { 8 function refreshAboutInfo(aboutInfo) {
9 chrome.sync.aboutInfo = aboutInfo; 9 chrome.sync.aboutInfo = aboutInfo;
10 var aboutInfoDiv = document.getElementById('aboutInfo'); 10 var aboutInfoDiv = document.getElementById('aboutInfo');
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 table#routingInfo tr:nth-child(odd) { 45 table#routingInfo tr:nth-child(odd) {
46 background: #ccffcc; 46 background: #ccffcc;
47 } 47 }
48 </style> 48 </style>
49 49
50 <div id='aboutInfo'> 50 <div id='aboutInfo'>
51 <div class="column"> 51 <div class="column">
52 <h2>Summary</h2> 52 <h2>Summary</h2>
53 <p jscontent="summary"/> 53 <p jscontent="summary"/>
54 <p jsdisplay="unrecoverable_error_detected"> 54 <p jsdisplay="unrecoverable_error_detected">
55 <span class="err">Unrecoverable Error Detected!</span> 55 <span class="err" jscontent="unrecoverable_error_message"></span>
56 <span jscontent="unrecoverable_error_message"></span>
57 <span jscontent="unrecoverable_error_location"></span>
58 </p> 56 </p>
59 57
60 <h2>Sync URL</h2> 58 <h2>Sync URL</h2>
61 <p jscontent="service_url"/> 59 <p jscontent="service_url"/>
62 60
63 <h2>Details</h2> 61 <h2>Details</h2>
64 <table id="aboutDetails"> 62 <table id="aboutDetails">
65 <tr> 63 <tr>
66 <td>Authenticated</td> 64 <td>Authenticated</td>
67 <td> 65 <td>
(...skipping 15 matching lines...) Expand all
83 <div class="column"> 81 <div class="column">
84 <h2>Routing Info</h2> 82 <h2>Routing Info</h2>
85 <table id="routingInfo"> 83 <table id="routingInfo">
86 <tr jsselect="routing_info"> 84 <tr jsselect="routing_info">
87 <td jscontent="model_type"/> 85 <td jscontent="model_type"/>
88 <td jscontent="group"/> 86 <td jscontent="group"/>
89 </tr> 87 </tr>
90 </table> 88 </table>
91 </div> 89 </div>
92 </div> 90 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698