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

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

Issue 2569663004: [NTPSnippets] Switch from TickClock to Clock for storing the last background fetched time. (Closed)
Patch Set: Created 4 years 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
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 maximum-scale=1.0, user-scalable=no"> 10 maximum-scale=1.0, user-scalable=no">
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 <div id="last-json" class="hidden"> 87 <div id="last-json" class="hidden">
88 <h2>Last JSON from Server</h2> 88 <h2>Last JSON from Server</h2>
89 <a id="last-json-button">Show the last JSON &gt;&gt;</a> 89 <a id="last-json-button">Show the last JSON &gt;&gt;</a>
90 <div id="last-json-container" class="hidden"> 90 <div id="last-json-container" class="hidden">
91 <div id="last-json-text"></div> 91 <div id="last-json-text"></div>
92 <button id="last-json-dump" type="button">Dump the last JSON</button> 92 <button id="last-json-dump" type="button">Dump the last JSON</button>
93 </div> 93 </div>
94 </div> 94 </div>
95 95
96 <div id="remote-content-suggestions" class="">
97 <h2>Remote content suggestions</h2>
98 <div>
99 <span>Last Background Fetch Time: </span>
100 <span id="last-background-fetch-time-label"></span>
101 </div>
102 <button id="background-fetch-button" type="button">
103 Fetch Remote Suggestion in the Background
Bernhard Bauer 2016/12/13 13:06:54 Nit: "suggestions", and no need to capitalize beyo
markusheintz_ 2016/12/13 14:01:28 Done.
104 </button>
105 </div>
106
96 <div id="content-suggestions"> 107 <div id="content-suggestions">
97 <h2>Content suggestions by category 108 <h2>Content suggestions by category
98 <span class="detail">(click for details)</span> 109 <span class="detail">(click for details)</span>
99 <button id="submit-dump" type="button">Dump the list</button> 110 <button id="submit-dump" type="button">Dump the list</button>
100 </h2> 111 </h2>
101 <div jsselect="list" style="display:none"> 112 <div jsselect="list" style="display:none">
102 <h3> 113 <h3>
103 <span jscontent="title"></span> 114 <span jscontent="title"></span>
104 <span class="detail"> 115 <span class="detail">
105 (<span jscontent="status"></span>) 116 (<span jscontent="status"></span>)
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 <tr> 199 <tr>
189 <td>Publisher name 200 <td>Publisher name
190 <td jscontent="publisherName"> 201 <td jscontent="publisherName">
191 </table> 202 </table>
192 </div> 203 </div>
193 </table> 204 </table>
194 </div> 205 </div>
195 <div class="detail" id="content-suggestions-empty"></div> 206 <div class="detail" id="content-suggestions-empty"></div>
196 </div> 207 </div>
197 </div> 208 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698