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

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

Issue 1851803002: [NTP Popular Sites] Store country/version in prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 2 Copyright 2015 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 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <if expr="is_android or is_ios"> 10 <if expr="is_android or is_ios">
(...skipping 30 matching lines...) Expand all
41 </tr> 41 </tr>
42 <tr> 42 <tr>
43 <td class="detail"> 43 <td class="detail">
44 <input id="submit-download" type="submit" value="Download"> 44 <input id="submit-download" type="submit" value="Download">
45 </td> 45 </td>
46 <td id="download-result" class="value"></td> 46 <td id="download-result" class="value"></td>
47 </tr> 47 </tr>
48 </table> 48 </table>
49 </div> 49 </div>
50 50
51 <div id="sites" class="section"> 51 <div class="section">
52 <h2>Info</h2>
53 <table class="section-details">
54 <tr>
55 <td class="detail">Country</td>
56 <td class="value" jscontent="country"></td>
57 </tr>
58 <tr>
59 <td class="detail">Version</td>
60 <td class="value" jscontent="version"></td>
61 </tr>
62 </table>
63 </div>
64
65 <div class="section">
52 <h2>Sites</h2> 66 <h2>Sites</h2>
53 <table class="section-details"> 67 <table class="section-details">
54 <tr jsselect="sites"> 68 <tr jsselect="sites">
55 <td class="detail" jscontent="title"></td> 69 <td class="detail" jscontent="title"></td>
56 <td class="value" jscontent="url"></td> 70 <td class="value" jscontent="url"></td>
57 </tr> 71 </tr>
58 <tr jsskip = true> 72 <tr jsskip="true">
59 <td class="detail"> 73 <td class="detail">
60 <input id="view-json" type="submit" value="View JSON"> 74 <input id="view-json" type="submit" value="View JSON">
61 </td> 75 </td>
62 <td class="value"><pre id="json-value"></pre></td> 76 <td class="value"><pre id="json-value"></pre></td>
63 </tr> 77 </tr>
64 </table> 78 </table>
65 </div> 79 </div>
66 </div> 80 </div>
67 81
68 </body> 82 </body>
69 </html> 83 </html>
70 84
OLDNEW
« no previous file with comments | « chrome/browser/net/file_downloader_unittest.cc ('k') | chrome/browser/resources/popular_sites_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698