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

Side by Side Diff: chrome/browser/resources/snippets_internals.html

Issue 2889153003: [NTP::SectionOrder] Add ranker section to snippets internals. (Closed)
Patch Set: jkrcal@ nit. Created 3 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
« no previous file with comments | « no previous file | chrome/browser/resources/snippets_internals.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The Chromium Authors. All rights reserved. 2 Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <if expr="is_android or is_ios"> 8 <if expr="is_android or is_ios">
9 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 9 <meta name="viewport" content="width=device-width, initial-scale=1.0">
10 </if> 10 </if>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <td id="avg-time-to-show" class="value"> 70 <td id="avg-time-to-show" class="value">
71 <tr> 71 <tr>
72 <td class="name">Estimated average time to use suggestions 72 <td class="name">Estimated average time to use suggestions
73 <td id="avg-time-to-use" class="value"> 73 <td id="avg-time-to-use" class="value">
74 </table> 74 </table>
75 <button id="clear-classification" type="button"> 75 <button id="clear-classification" type="button">
76 Clear my classification 76 Clear my classification
77 </button> 77 </button>
78 </div> 78 </div>
79 79
80 <div id="ranker">
81 <h2>CategoryRanker</h2>
82 <table class="section-details">
83 <tr jsselect="list" style="display:none">
84 <td jscontent="label">
85 <td jscontent="content" class="value">
86 </tr>
87 </table>
88 </div>
89
80 <div id="snippets"> 90 <div id="snippets">
81 <h2>NTPSnippetsService</h2> 91 <h2>NTPSnippetsService</h2>
82 <div class="forms"> 92 <div class="forms">
83 <button id="submit-download" type="button">Add snippets</button> 93 <button id="submit-download" type="button">Add snippets</button>
84 <span id="remote-status" class="detail"></span> 94 <span id="remote-status" class="detail"></span>
85 </div> 95 </div>
86 </div> 96 </div>
87 97
88 <div id="last-json" class="hidden"> 98 <div id="last-json" class="hidden">
89 <h2>Last JSON from Server</h2> 99 <h2>Last JSON from Server</h2>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 <tr> 205 <tr>
196 <td>Publisher name 206 <td>Publisher name
197 <td jscontent="publisherName"> 207 <td jscontent="publisherName">
198 </table> 208 </table>
199 </div> 209 </div>
200 </table> 210 </table>
201 </div> 211 </div>
202 <div class="detail" id="content-suggestions-empty"></div> 212 <div class="detail" id="content-suggestions-empty"></div>
203 </div> 213 </div>
204 </div> 214 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/snippets_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698