OLD | NEW |
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 | 28 <td class="name">Recent Tab Suggestions enabled |
29 <td id="flag-offline-page-suggestions" class="value"> | 29 <td id="flag-recent-offline-tab-suggestions" class="value"> |
| 30 <tr> |
| 31 <td class="name">Download Suggestions enabled |
| 32 <td id="flag-download-suggestions" class="value"> |
| 33 <tr> |
| 34 <td class="name">Bookmark Suggestions enabled |
| 35 <td id="flag-bookmark-suggestions" class="value"> |
30 <tr> | 36 <tr> |
31 <td class="name">Snippets restricted to hosts | 37 <td class="name">Snippets restricted to hosts |
32 <td id="switch-restrict-to-hosts" class="value"> | 38 <td id="switch-restrict-to-hosts" class="value"> |
33 <tr> | 39 <tr> |
34 <td class="name">Snippets type | 40 <td class="name">Snippets type |
35 <td id="switch-personalized" class="value"> | 41 <td id="switch-personalized" class="value"> |
36 <tr> | 42 <tr> |
37 <td class="name">Snippets fetch URL | 43 <td class="name">Snippets fetch URL |
38 <td id="switch-fetch-url" class="value"> | 44 <td id="switch-fetch-url" class="value"> |
39 </table> | 45 </table> |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 <tr> | 168 <tr> |
163 <td>Publisher name | 169 <td>Publisher name |
164 <td jscontent="publisherName"> | 170 <td jscontent="publisherName"> |
165 </table> | 171 </table> |
166 </div> | 172 </div> |
167 </table> | 173 </table> |
168 </div> | 174 </div> |
169 <div class="detail" id="content-suggestions-empty"></div> | 175 <div class="detail" id="content-suggestions-empty"></div> |
170 </div> | 176 </div> |
171 </div> | 177 </div> |
OLD | NEW |