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

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

Issue 7291004: Wire up notifications to the New Tab page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/ntp/apps.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 bookmarkbarattached:bookmarkbarattached; 4 bookmarkbarattached:bookmarkbarattached;
5 hasattribution:hasattribution; 5 hasattribution:hasattribution;
6 anim:anim; 6 anim:anim;
7 syncispresent:syncispresent; 7 syncispresent:syncispresent;
8 customlogo:customlogo" 8 customlogo:customlogo"
9 install-animation-enabled="true"> 9 install-animation-enabled="true">
10 <head> 10 <head>
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 <span id="login-username"></span> 144 <span id="login-username"></span>
145 </div> 145 </div>
146 146
147 <div class="maxiview" id="apps-maxiview"> 147 <div class="maxiview" id="apps-maxiview">
148 <div id="apps-promo"> 148 <div id="apps-promo">
149 <p id="apps-promo-heading"></p> 149 <p id="apps-promo-heading"></p>
150 <a class="g-button-basic" id="apps-promo-link" href=""></a><br> 150 <a class="g-button-basic" id="apps-promo-link" href=""></a><br>
151 <button id="apps-promo-hide"></button> 151 <button id="apps-promo-hide"></button>
152 </div> 152 </div>
153 <div id="apps-content"></div> 153 <div id="apps-content"></div>
154 <div id="app-notification-bubble" class="notification-bubble">
155 <img id="app-notification-close" src="chrome://theme/IDR_CLOSE_BAR"
156 class="app-notification-close">
157 <strong id="app-notification-title"></strong><br>
158 <span id="app-notification-message"></span><br><br>
159 <a id="app-notification-link"></a></div>
Evan Stade 2011/07/02 00:27:50 nit: place closing div on new line
160 <div id="arrow-contents"
161 class="arrow arrow-contents notification-bubble-closed"></div>
162 <div id="arrow-border"
163 class="arrow arrow-border notification-bubble-closed"></div>
164 <div id="arrow-shadow"
165 class="arrow arrow-shadow notification-bubble-closed"></div>
154 </div> 166 </div>
155 <div class="maxiview" id="most-visited-maxiview"></div> 167 <div class="maxiview" id="most-visited-maxiview"></div>
156 168
157 <div class="sections"> 169 <div class="sections">
158 <!-- Start disabled. We only enable once we have installed default apps. --> 170 <!-- Start disabled. We only enable once we have installed default apps. -->
159 <div id="apps" class="section disabled" section="APPS"> 171 <div id="apps" class="section disabled" section="APPS">
160 <h2> 172 <h2>
161 <img class="disclosure" img src="ntp/ntp_disclosure_triangle.png"> 173 <img class="disclosure" img src="ntp/ntp_disclosure_triangle.png">
162 <div class="back"></div> 174 <div class="back"></div>
163 <span i18n-content="apps"></span> 175 <span i18n-content="apps"></span>
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; 326 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT;
315 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); 327 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS);
316 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, 328 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu,
317 MENU_THUMB); 329 MENU_THUMB);
318 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, 330 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu,
319 MENU_RECENT); 331 MENU_RECENT);
320 332
321 layoutSections(); 333 layoutSections();
322 </script> 334 </script>
323 </html> 335 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp/apps.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698