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

Side by Side Diff: components/sync_driver/resources/types.html

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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
« no previous file with comments | « components/sync_driver/resources/types.css ('k') | components/sync_driver/resources/types.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <div id="type-counters-container-wrapper" jsskip="true">
2 <div class="section">
3 <h2>Type Counters</h2>
4 <table id="type-counters-table">
5 <thead>
6 <tr>
7 <th class='type'>Type</th>
8 <th>Total Entries</th>
9
10 <th>Updates Received</th>
11 <th>Reflected Updates Received</th>
12 <th>Tombstone Updates Received</th>
13
14 <th>Updates Applied</th>
15 <th>Hierarchy Conflict Application Failures</th>
16 <th>Encryption Conflict Application Failures</th>
17
18 <th>Server Overwrite Conflicts</th>
19 <th>Local Overwrite Conflicts</th>
20
21 <th>Commit Attempts</th>
22 <th>Commit Successes</th>
23 <th>Commit Conflicts</th>
24 <th>Commit Errors</th>
25 </tr>
26 </thead>
27 <tbody>
28 <tr jsselect="rows">
29 <td jscontent="type"></td>
30 <td jscontent="counters.numEntries || 0">0</td>
31
32 <td jscontent="counters.numUpdatesReceived || 0">0</td>
33 <td jscontent="counters.numReflectedUpdatesReceived || 0">0</td>
34 <td jscontent="counters.numTombstoneUpdatesReceived || 0">0</td>
35
36 <td jscontent="counters.numUpdatesApplied || 0">0</td>
37 <td jscontent="counters.numHierarchyConflictApplicationFailures || 0 ">0</td>
38 <td jscontent="counters.numEncryptionConflictApplicationFailures || 0">0</td>
39
40 <td jscontent="counters.numServerOverwrites || 0">0</td>
41 <td jscontent="counters.numLocalOverwrites || 0">0</td>
42
43 <td jscontent="counters.numCommitsAttempted || 0">0</td>
44 <td jscontent="counters.numCommitsSuccess || 0">0</td>
45 <td jscontent="counters.numCommitsConflict || 0">0</td>
46 <td jscontent="counters.numCommitsError || 0">0</td>
47 </tr>
48 </tbody>
49 </table>
50 </div>
51 </div>
OLDNEW
« no previous file with comments | « components/sync_driver/resources/types.css ('k') | components/sync_driver/resources/types.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698