| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |