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

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

Issue 8208014: Update the notification bubble. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 hasattribution:hasattribution; 4 hasattribution:hasattribution;
5 customlogo:customlogo; 5 customlogo:customlogo;
6 themegravity:themegravity;" 6 themegravity:themegravity;"
7 class="starting-up"> 7 class="starting-up">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
(...skipping 10 matching lines...) Expand all
21 <script src="logging.js"></script> 21 <script src="logging.js"></script>
22 22
23 <if expr="pp_ifdef('touchui')"> 23 <if expr="pp_ifdef('touchui')">
24 <script> 24 <script>
25 document.documentElement.setAttribute('touchui', true); 25 document.documentElement.setAttribute('touchui', true);
26 </script> 26 </script>
27 </if> 27 </if>
28 28
29 <link rel="stylesheet" href="../shared/css/gradient_button.css"> 29 <link rel="stylesheet" href="../shared/css/gradient_button.css">
30 <link rel="stylesheet" href="../shared/css/bubble.css"> 30 <link rel="stylesheet" href="../shared/css/bubble.css">
31 <link rel="stylesheet" href="../shared/css/expandable_bubble.css">
31 <link rel="stylesheet" href="../shared/css/menu.css"> 32 <link rel="stylesheet" href="../shared/css/menu.css">
32 <link rel="stylesheet" href="apps_page.css"> 33 <link rel="stylesheet" href="apps_page.css">
33 <link rel="stylesheet" href="bookmarks_page.css"> 34 <link rel="stylesheet" href="bookmarks_page.css">
34 <link rel="stylesheet" href="most_visited_page.css"> 35 <link rel="stylesheet" href="most_visited_page.css">
35 <link rel="stylesheet" href="nav_dot.css"> 36 <link rel="stylesheet" href="nav_dot.css">
36 <link rel="stylesheet" href="new_tab.css"> 37 <link rel="stylesheet" href="new_tab.css">
37 <link rel="stylesheet" href="recently_closed.css"> 38 <link rel="stylesheet" href="recently_closed.css">
38 <link rel="stylesheet" href="tile_page.css"> 39 <link rel="stylesheet" href="tile_page.css">
39 <link id="themecss" rel="stylesheet"> 40 <link id="themecss" rel="stylesheet">
40 41
41 <script src="../shared/js/event_tracker.js"></script> 42 <script src="../shared/js/event_tracker.js"></script>
42 <script src="../shared/js/local_strings.js"></script> 43 <script src="../shared/js/local_strings.js"></script>
43 <script src="../shared/js/parse_html_subset.js"></script> 44 <script src="../shared/js/parse_html_subset.js"></script>
44 <script src="../shared/js/util.js"></script> 45 <script src="../shared/js/util.js"></script>
45 46
46 <script src="../shared/js/cr.js"></script> 47 <script src="../shared/js/cr.js"></script>
47 <script src="../shared/js/cr/ui.js"></script> 48 <script src="../shared/js/cr/ui.js"></script>
48 <script src="../shared/js/cr/ui/bubble.js"></script> 49 <script src="../shared/js/cr/ui/bubble.js"></script>
50 <script src="../shared/js/cr/ui/expandable_bubble.js"></script>
49 <script src="../shared/js/cr/ui/menu.js"></script> 51 <script src="../shared/js/cr/ui/menu.js"></script>
50 <script src="../shared/js/cr/ui/menu_item.js"></script> 52 <script src="../shared/js/cr/ui/menu_item.js"></script>
51 <script src="../shared/js/cr/ui/position_util.js"></script> 53 <script src="../shared/js/cr/ui/position_util.js"></script>
52 <script src="../shared/js/cr/ui/menu_button.js"></script> 54 <script src="../shared/js/cr/ui/menu_button.js"></script>
53 <script src="../shared/js/cr/ui/context_menu_handler.js"></script> 55 <script src="../shared/js/cr/ui/context_menu_handler.js"></script>
54 56
55 <script src="drag_wrapper.js"></script> 57 <script src="drag_wrapper.js"></script>
56 <script src="tile_page.js"></script> 58 <script src="tile_page.js"></script>
57 <script src="apps_page.js"></script> 59 <script src="apps_page.js"></script>
58 <script src="bookmarks_page.js"></script> 60 <script src="bookmarks_page.js"></script>
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 </div> 191 </div>
190 192
191 <!-- Bookmarks Import Data Link --> 193 <!-- Bookmarks Import Data Link -->
192 <div id="bookmarks-import-data-link-template" 194 <div id="bookmarks-import-data-link-template"
193 class="bookmarks-import-data-link-wrapper" hidden> 195 class="bookmarks-import-data-link-wrapper" hidden>
194 <a href="chrome://settings/importData" 196 <a href="chrome://settings/importData"
195 i18n-content="importDataLinkTitle" class="link-color"></a> 197 i18n-content="importDataLinkTitle" class="link-color"></a>
196 </div> 198 </div>
197 199
198 </html> 200 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/apps_page.js ('k') | chrome/browser/resources/shared/css/expandable_bubble.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698