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

Side by Side Diff: chrome/browser/resources/ntp_android/new_tab.html

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 <meta name="viewport" content="width=device-width, initial-scale=1.0, 5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no"> 6 maximum-scale=1.0, user-scalable=no">
7 <title i18n-content="title"></title> 7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="ntp_android.css"> 8 <link rel="stylesheet" href="ntp_android.css">
9 <link rel="stylesheet" href="bookmarks.css"> 9 <link rel="stylesheet" href="bookmarks.css">
10 <link rel="stylesheet" href="bookmarks_tablet.css"> 10 <link rel="stylesheet" href="bookmarks_tablet.css">
11 <link rel="stylesheet" href="mostvisited.css"> 11 <link rel="stylesheet" href="mostvisited.css">
12 <link rel="stylesheet" href="mostvisited_tablet.css"> 12 <link rel="stylesheet" href="mostvisited_tablet.css">
13 <link rel="stylesheet" href="opentabs.css"> 13 <link rel="stylesheet" href="opentabs.css">
14 <link rel="stylesheet" href="opentabs_tablet.css"> 14 <link rel="stylesheet" href="opentabs_tablet.css">
15 <link rel="stylesheet" href="incognito_tab.css"> 15 <link rel="stylesheet" href="incognito_tab.css">
16 <!-- template data placeholder --> 16 <!-- template data placeholder -->
17 <script src="../shared/js/cr.js"></script> 17 <script src="../../../../ui/webui/resource/js/cr.js"></script>
18 <script src="../shared/js/parse_html_subset.js"></script> 18 <script src="../../../../ui/webui/resource/js/parse_html_subset.js"></script >
19 <script src="ntp_android.js"></script> 19 <script src="ntp_android.js"></script>
20 <script> 20 <script>
21 if (document.location.host != "newtab") { 21 if (document.location.host != "newtab") {
22 document.write('<script src="mockdata.js"><\/script>'); 22 document.write('<script src="mockdata.js"><\/script>');
23 } 23 }
24 </script> 24 </script>
25 </head> 25 </head>
26 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize;devic e:device"> 26 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize;devic e:device">
27 <div id="content-area" style="display:none"> 27 <div id="content-area" style="display:none">
28 <div class="main-section" id="open_tabs_container"> 28 <div class="main-section" id="open_tabs_container">
(...skipping 29 matching lines...) Expand all
58 <div id="recently_closed_container" style="display:none;"> 58 <div id="recently_closed_container" style="display:none;">
59 <div class="recently-closed-title-container"> 59 <div class="recently-closed-title-container">
60 <span class="title" i18n-content="recentlyclosed"></span> 60 <span class="title" i18n-content="recentlyclosed"></span>
61 </div> 61 </div>
62 <div class="page-list" id="recently_closed_list"></div> 62 <div class="page-list" id="recently_closed_list"></div>
63 </div> 63 </div>
64 <div id="promo_message_on_most_visited" class="promo-message" style="dis play: none;"></div> 64 <div id="promo_message_on_most_visited" class="promo-message" style="dis play: none;"></div>
65 </div> 65 </div>
66 <div class="main-section" id="incognito_container"> 66 <div class="main-section" id="incognito_container">
67 <div class="content"> 67 <div class="content">
68 <img src="../shared/images/otr_icon_standalone.png" class="icon"> 68 <img src="../../../../ui/webui/resources/images/otr_icon_standalone.pn g" class="icon">
69 <span i18n-values=".innerHTML:content"></span> 69 <span i18n-values=".innerHTML:content"></span>
70 </div> 70 </div>
71 </div> 71 </div>
72 </div> 72 </div>
73 </body> 73 </body>
74 <script src="../shared/js/i18n_template.js"></script> 74 <script src="../../../../ui/webui/resources/js/i18n_template.js"></script>
75 <script> 75 <script>
76 i18nTemplate.process(document, templateData); 76 i18nTemplate.process(document, templateData);
77 </script> 77 </script>
78 </html> 78 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/new_tab.js ('k') | chrome/browser/resources/ntp_search/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698