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

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

Issue 3522015: Implement new strategy for default apps (Closed)
Patch Set: all done Created 10 years, 2 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
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 appspromovisible:appspromovisible"
10 install-animation-enabled="true"> 9 install-animation-enabled="true">
11 <head> 10 <head>
12 <meta charset="utf-8"> 11 <meta charset="utf-8">
13 <title i18n-content="title"></title> 12 <title i18n-content="title"></title>
14 <script> 13 <script>
15 // Logging info for benchmarking purposes. 14 // Logging info for benchmarking purposes.
16 var log = []; 15 var log = [];
17 function logEvent(name, shouldLogTime) { 16 function logEvent(name, shouldLogTime) {
18 if (shouldLogTime) { 17 if (shouldLogTime) {
19 chrome.send('logEventTime', [name]); 18 chrome.send('logEventTime', [name]);
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 setSectionVisible('apps', Section.APPS, appsInitiallyVisible, MINIMIZED_APPS); 284 setSectionVisible('apps', Section.APPS, appsInitiallyVisible, MINIMIZED_APPS);
286 setSectionVisible( 285 setSectionVisible(
287 'most-visited', Section.THUMB, 286 'most-visited', Section.THUMB,
288 mostVisitedInitiallyVisible, MINIMIZED_THUMB); 287 mostVisitedInitiallyVisible, MINIMIZED_THUMB);
289 setSectionVisible( 288 setSectionVisible(
290 'recently-closed', undefined, 289 'recently-closed', undefined,
291 recentlyClosedInitiallyVisible, MINIMIZED_RECENT); 290 recentlyClosedInitiallyVisible, MINIMIZED_RECENT);
292 layoutSections(); 291 layoutSections();
293 </script> 292 </script>
294 </html> 293 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/gmail_app/manifest.json ('k') | chrome/browser/resources/new_new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698