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

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

Issue 2819553003: Hook up LocalNtpSource to OneGoogleBarService (Closed)
Patch Set: Tests! 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. --> 5 found in the LICENSE file. -->
6 <head> 6 <head>
7 <link rel="stylesheet" href="chrome-search://local-ntp/theme.css"></link> 7 <link rel="stylesheet" href="chrome-search://local-ntp/theme.css"></link>
8 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link> 8 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link>
9 <script src="chrome-search://local-ntp/config.js" 9 <script src="chrome-search://local-ntp/config.js"
10 integrity="{{CONFIG_INTEGRITY}}"></script> 10 integrity="{{CONFIG_INTEGRITY}}"></script>
11 <script src="chrome-search://local-ntp/local-ntp.js" 11 <script src="chrome-search://local-ntp/local-ntp.js"
12 integrity="sha256-g38WaUaxnOIWY7E2LtLZ5ff9r5sn1dBj80jevt/kmx0="></script> 12 integrity="sha256-ROPmcormZEipZzy3Ff+o345FFrhHWsAZjBpGIyZzCYY="></script>
13 <meta charset="utf-8"> 13 <meta charset="utf-8">
14 <meta name="google" value="notranslate"> 14 <meta name="google" value="notranslate">
15 </head> 15 </head>
16 <body> 16 <body>
17 <!-- Container for the OneGoogleBar HTML. -->
18 <div id="one-google"></div>
19
17 <div id="ntp-contents"> 20 <div id="ntp-contents">
18 <div id="logo" title="Google"></div> 21 <div id="logo" title="Google"></div>
19 <div id="fakebox"> 22 <div id="fakebox">
20 <div id="fakebox-text"></div> 23 <div id="fakebox-text"></div>
21 <input id="fakebox-input" autocomplete="off" tabIndex="-1" type="url" 24 <input id="fakebox-input" autocomplete="off" tabIndex="-1" type="url"
22 aria-hidden="true"> 25 aria-hidden="true">
23 <div id="cursor"></div> 26 <div id="cursor"></div>
24 </div> 27 </div>
25 <div id="most-visited"> 28 <div id="most-visited">
26 <!-- The container for the tiles. The MV iframe goes in here. --> 29 <!-- The container for the tiles. The MV iframe goes in here. -->
27 <div id="mv-tiles"></div> 30 <div id="mv-tiles"></div>
28 <!-- Notification shown when a tile is blacklisted. --> 31 <!-- Notification shown when a tile is blacklisted. -->
29 <div id="mv-notice" class="mv-notice-hide"> 32 <div id="mv-notice" class="mv-notice-hide">
30 <span id="mv-msg"></span> 33 <span id="mv-msg"></span>
31 <!-- Links in the notification. --> 34 <!-- Links in the notification. -->
32 <span id="mv-notice-links"> 35 <span id="mv-notice-links">
33 <span id="mv-undo" tabIndex="1"></span> 36 <span id="mv-undo" tabIndex="1"></span>
34 <span id="mv-restore" tabIndex="1"></span> 37 <span id="mv-restore" tabIndex="1"></span>
35 <div id="mv-notice-x" tabIndex="1"></div> 38 <div id="mv-notice-x" tabIndex="1"></div>
36 </span> 39 </span>
37 </div> 40 </div>
38 </div> 41 </div>
39 <div id="attribution"><div id="attribution-text"></div></div> 42 <div id="attribution"><div id="attribution-text"></div></div>
40 </div> 43 </div>
44
45 <div id="one-google-end-of-body"></div>
41 </body> 46 </body>
42 </html> 47 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/local_ntp/local_ntp.css ('k') | chrome/browser/resources/local_ntp/local_ntp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698