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

Unified Diff: chrome/browser/resources/local_ntp/local_ntp.html

Issue 12840003: Implement local NTP for fallback. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Fix compile. Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/local_ntp/local_ntp.html
diff --git a/chrome/browser/resources/local_ntp/local_ntp.html b/chrome/browser/resources/local_ntp/local_ntp.html
new file mode 100644
index 0000000000000000000000000000000000000000..4f25c472303529a585ce30bfbd41755bed63f45c
--- /dev/null
+++ b/chrome/browser/resources/local_ntp/local_ntp.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<!-- Copyright 2013 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+<head>
+ <!-- Placeholder title until http://crbug/196415 is resolved. -->
+ <title>New Tab Page</title>
+ <script src="chrome-search://local-ntp/local-ntp.js"></script>
+ <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link>
+</head>
+<body>
+ <div id="mv-top-margin"></div>
+ <div id="most-visited">
+ <div id="mv-tiles"></div>
+ <!-- Notification shown when a tile is blacklisted. -->
+ <div id="mv-notice" class="mv-notice-hide">
+ <span id="mv-msg"></span>
+ <!-- Links in the notification. -->
+ <span id="mv-notice-links">
+ <span id="mv-undo"></span>
+ <span id="mv-restore"></span>
+ <button id="mv-notice-x" class="mv-x"></button>
+ </span>
+ </div>
+ </div>
+</body>
+</html>
« 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