| 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   install-animation-enabled="true"> | 
|   10 <head> |   10 <head> | 
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  169     </div> |  169     </div> | 
|  170   </div> |  170   </div> | 
|  171 </div>  <!-- main --> |  171 </div>  <!-- main --> | 
|  172  |  172  | 
|  173 <div class="window-menu" id="window-tooltip"></div> |  173 <div class="window-menu" id="window-tooltip"></div> | 
|  174  |  174  | 
|  175 <command id="clear-all-blacklisted" i18n-values=".label:restorethumbnails"> |  175 <command id="clear-all-blacklisted" i18n-values=".label:restorethumbnails"> | 
|  176 <command id="apps-launch-command"> |  176 <command id="apps-launch-command"> | 
|  177 <command id="apps-options-command" i18n-values=".label:appoptions"> |  177 <command id="apps-options-command" i18n-values=".label:appoptions"> | 
|  178 <command id="apps-uninstall-command" i18n-values=".label:appuninstall"> |  178 <command id="apps-uninstall-command" i18n-values=".label:appuninstall"> | 
 |  179 <command id="apps-launch-type-pinned" i18n-values=".label:applaunchtypepinned" | 
 |  180     launch-type="0"> | 
 |  181 <command id="apps-launch-type-regular" i18n-values=".label:applaunchtyperegular" | 
 |  182     launch-type="1"> | 
 |  183 <command id="apps-launch-type-fullscreen" | 
 |  184     i18n-values=".label:applaunchtypefullscreen" launch-type="2"> | 
|  179  |  185  | 
|  180 <menu id="app-context-menu"> |  186 <menu id="app-context-menu"> | 
|  181   <button class="default" command="#apps-launch-command"></button> |  187   <button class="default" command="#apps-launch-command"></button> | 
|  182   <hr> |  188   <hr> | 
 |  189   <button command="#apps-launch-type-pinned" launch-type="0"></button> | 
 |  190   <button command="#apps-launch-type-regular" launch-type="1"></button> | 
 |  191   <button command="#apps-launch-type-fullscreen" launch-type="2"></button> | 
 |  192   <hr> | 
|  183   <button command="#apps-options-command"></button> |  193   <button command="#apps-options-command"></button> | 
|  184   <button command="#apps-uninstall-command"></button> |  194   <button command="#apps-uninstall-command"></button> | 
|  185 </menu> |  195 </menu> | 
|  186  |  196  | 
|  187 </body> |  197 </body> | 
|  188  |  198  | 
|  189 <script src="shared/js/i18n_template.js"></script> |  199 <script src="shared/js/i18n_template.js"></script> | 
|  190 <script> |  200 <script> | 
|  191 i18nTemplate.process(document, templateData); |  201 i18nTemplate.process(document, templateData); | 
|  192 </script> |  202 </script> | 
| (...skipping 21 matching lines...) Expand all  Loading... | 
|  214 cr.ui.decorate('command', cr.ui.Command); |  224 cr.ui.decorate('command', cr.ui.Command); | 
|  215 cr.ui.decorate('button[menu]', cr.ui.MenuButton); |  225 cr.ui.decorate('button[menu]', cr.ui.MenuButton); | 
|  216 </script> |  226 </script> | 
|  217  |  227  | 
|  218 <script> |  228 <script> | 
|  219   updateSimpleSection('apps', Section.APPS); |  229   updateSimpleSection('apps', Section.APPS); | 
|  220   updateSimpleSection('most-visited', Section.THUMB); |  230   updateSimpleSection('most-visited', Section.THUMB); | 
|  221   layoutSections(); |  231   layoutSections(); | 
|  222 </script> |  232 </script> | 
|  223 </html> |  233 </html> | 
| OLD | NEW |