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

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

Issue 10913087: uber: Remove <link rel=icon> tags (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="pp_ifdef('android')"> 5 <if expr="pp_ifdef('android')">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="icon" href="chrome://theme/IDR_HISTORY_FAVICON">
11
12 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
13 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 11 <link rel="stylesheet" href="chrome://resources/css/menu.css">
14 <link rel="stylesheet" href="chrome://resources/css/menu_button.css"> 12 <link rel="stylesheet" href="chrome://resources/css/menu_button.css">
15 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> 13 <link rel="stylesheet" href="chrome://resources/css/spinner.css">
16 <link rel="stylesheet" href="../uber/uber_shared.css"> 14 <link rel="stylesheet" href="../uber/uber_shared.css">
17 <link rel="stylesheet" href="history.css"> 15 <link rel="stylesheet" href="history.css">
18 16
19 <script src="chrome://resources/js/event_tracker.js"></script> 17 <script src="chrome://resources/js/event_tracker.js"></script>
20 <script src="chrome://resources/js/cr.js"></script> 18 <script src="chrome://resources/js/cr.js"></script>
21 <script src="chrome://resources/js/cr/ui.js"></script> 19 <script src="chrome://resources/js/cr/ui.js"></script>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 58
61 <menu id="action-menu"> 59 <menu id="action-menu">
62 <button id="more-from-site" i18n-content="moreFromSite"></button> 60 <button id="more-from-site" i18n-content="moreFromSite"></button>
63 <button id="remove-visit" i18n-content="removeFromHistory"></button> 61 <button id="remove-visit" i18n-content="removeFromHistory"></button>
64 </menu> 62 </menu>
65 63
66 <script src="chrome://history-frame/strings.js"></script> 64 <script src="chrome://history-frame/strings.js"></script>
67 <script src="chrome://resources/js/i18n_template2.js"></script> 65 <script src="chrome://resources/js/i18n_template2.js"></script>
68 </body> 66 </body>
69 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698