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

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

Issue 2149453004: Implement first version of OfflinePageSuggestionsProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove separate build target for offline_page_suggestions Created 4 years, 5 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
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">
11 </if> 11 </if>
12 <title>Snippets Internals</title> 12 <title>Snippets Internals</title>
13 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 13 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
14 <link rel="stylesheet" href="snippets_internals.css"> 14 <link rel="stylesheet" href="snippets_internals.css">
15 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
16 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 16 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
17 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
18 <script src="snippets_internals.js"></script> 18 <script src="snippets_internals.js"></script>
19 19
20 <div id="info"> 20 <div id="info">
21 <div> 21 <div>
22 <h2>Properties</h2> 22 <h2>Properties</h2>
23 <table class="section-details"> 23 <table class="section-details">
24 <tr> 24 <tr>
25 <td class="name">Snippets enabled 25 <td class="name">Snippets enabled
26 <td id="flag-snippets" class="value"> 26 <td id="flag-snippets" class="value">
27 <tr> 27 <tr>
28 <td class="name">Offline Page Suggestions enabled
29 <td id="flag-offline-page-suggestions" class="value">
30 <tr>
28 <td class="name">Snippets restricted to hosts 31 <td class="name">Snippets restricted to hosts
29 <td id="switch-restrict-to-hosts" class="value"> 32 <td id="switch-restrict-to-hosts" class="value">
30 <tr> 33 <tr>
31 <td class="name">Snippets type 34 <td class="name">Snippets type
32 <td id="switch-personalized" class="value"> 35 <td id="switch-personalized" class="value">
33 <tr> 36 <tr>
34 <td class="name">Snippets fetch URL 37 <td class="name">Snippets fetch URL
35 <td id="switch-fetch-url" class="value"> 38 <td id="switch-fetch-url" class="value">
36 </table> 39 </table>
37 </div> 40 </div>
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 </div> 203 </div>
201 <div class="detail" id="content-suggestions-empty"></div> 204 <div class="detail" id="content-suggestions-empty"></div>
202 <div class="forms"> 205 <div class="forms">
203 <input id="submit-clear-cached-suggestions" type="submit" 206 <input id="submit-clear-cached-suggestions" type="submit"
204 value="Clear cached suggestions"> 207 value="Clear cached suggestions">
205 <input id="submit-clear-discarded-suggestions" type="submit" 208 <input id="submit-clear-discarded-suggestions" type="submit"
206 value="Clear discarded suggestions"> 209 value="Clear discarded suggestions">
207 </div> 210 </div>
208 </div> 211 </div>
209 </div> 212 </div>
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_manager.cc ('k') | chrome/browser/ui/webui/snippets_internals_message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698