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

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

Issue 7610008: Sync Promo: Show profile avatar next to user name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build issues Created 9 years, 4 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/new_tab_sync_promo.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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 document.documentElement.setAttribute('mode', hashParams['mode']); 123 document.documentElement.setAttribute('mode', hashParams['mode']);
124 } 124 }
125 125
126 </script> 126 </script>
127 </head> 127 </head>
128 <body class="loading" 128 <body class="loading"
129 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 129 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
130 130
131 <div id="sync-promo" class="collapsed" hidden> 131 <div id="sync-promo" class="collapsed" hidden>
132 <div id="sync-promo-login-status"> 132 <div id="sync-promo-login-status">
133 <span id="sync-promo-user-name"></span> 133 <div id="sync-promo-login-status-cell">
134 <span id="sync-promo-not-connected" 134 <span id="sync-promo-login-status-msg"></span>
135 i18n-content="statusNotConnected" hidden></span> 135 <img id="login-status-avatar-icon" hidden>
136 </div>
136 </div> 137 </div>
137 <div id="sync-promo-contents"> 138 <div id="sync-promo-contents">
138 <include src="sync_setup_overlay.html"> 139 <include src="sync_setup_overlay.html">
139 </div> 140 </div>
140 <div id="sync-promo-toggle"> 141 <div id="sync-promo-toggle">
141 <input id="sync-promo-toggle-button" type="image" 142 <input id="sync-promo-toggle-button" type="image"
142 src="sync_promo_minimize.png"> 143 src="sync_promo_minimize.png">
143 </div> 144 </div>
144 </div> 145 </div>
145 146
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT; 352 var recentlyClosedInitiallyMenu = shownSections & MENU_RECENT;
352 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS); 353 setSectionMenuMode('apps', Section.APPS, appsInitiallyMenu, MENU_APPS);
353 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu, 354 setSectionMenuMode('most-visited', Section.THUMB, mostVisitedInitiallyMenu,
354 MENU_THUMB); 355 MENU_THUMB);
355 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu, 356 setSectionMenuMode('recently-closed', undefined, recentlyClosedInitiallyMenu,
356 MENU_RECENT); 357 MENU_RECENT);
357 358
358 layoutSections(); 359 layoutSections();
359 </script> 360 </script>
360 </html> 361 </html>
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/new_tab_sync_promo.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698