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

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

Issue 3396021: Fix bug where install animation would replay if something on the (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 3 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
« 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 <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
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>
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