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 install-animation-enabled="true"> |
9 <head> | 10 <head> |
10 <meta charset="utf-8"> | 11 <meta charset="utf-8"> |
11 <title i18n-content="title"></title> | 12 <title i18n-content="title"></title> |
12 <script> | 13 <script> |
13 // Logging info for benchmarking purposes. | 14 // Logging info for benchmarking purposes. |
14 var log = []; | 15 var log = []; |
15 function logEvent(name, shouldLogTime) { | 16 function logEvent(name, shouldLogTime) { |
16 if (shouldLogTime) { | 17 if (shouldLogTime) { |
17 chrome.send('logEventTime', [name]); | 18 chrome.send('logEventTime', [name]); |
18 } | 19 } |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 cr.ui.decorate('command', cr.ui.Command); | 214 cr.ui.decorate('command', cr.ui.Command); |
214 cr.ui.decorate('button[menu]', cr.ui.MenuButton); | 215 cr.ui.decorate('button[menu]', cr.ui.MenuButton); |
215 </script> | 216 </script> |
216 | 217 |
217 <script> | 218 <script> |
218 updateSimpleSection('apps', Section.APPS); | 219 updateSimpleSection('apps', Section.APPS); |
219 updateSimpleSection('most-visited', Section.THUMB); | 220 updateSimpleSection('most-visited', Section.THUMB); |
220 layoutSections(); | 221 layoutSections(); |
221 </script> | 222 </script> |
222 </html> | 223 </html> |
OLD | NEW |