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

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

Issue 3517004: Revert 60997 - o Add user customizable launch type for apps by adding options... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/prefs/pref_service.h ('k') | chrome/browser/resources/ntp/apps.js » ('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 install-animation-enabled="true">
10 <head> 10 <head>
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
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">
185 179
186 <menu id="app-context-menu"> 180 <menu id="app-context-menu">
187 <button class="default" command="#apps-launch-command"></button> 181 <button class="default" command="#apps-launch-command"></button>
188 <hr> 182 <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>
193 <button command="#apps-options-command"></button> 183 <button command="#apps-options-command"></button>
194 <button command="#apps-uninstall-command"></button> 184 <button command="#apps-uninstall-command"></button>
195 </menu> 185 </menu>
196 186
197 </body> 187 </body>
198 188
199 <script src="shared/js/i18n_template.js"></script> 189 <script src="shared/js/i18n_template.js"></script>
200 <script> 190 <script>
201 i18nTemplate.process(document, templateData); 191 i18nTemplate.process(document, templateData);
202 </script> 192 </script>
(...skipping 21 matching lines...) Expand all
224 cr.ui.decorate('command', cr.ui.Command); 214 cr.ui.decorate('command', cr.ui.Command);
225 cr.ui.decorate('button[menu]', cr.ui.MenuButton); 215 cr.ui.decorate('button[menu]', cr.ui.MenuButton);
226 </script> 216 </script>
227 217
228 <script> 218 <script>
229 updateSimpleSection('apps', Section.APPS); 219 updateSimpleSection('apps', Section.APPS);
230 updateSimpleSection('most-visited', Section.THUMB); 220 updateSimpleSection('most-visited', Section.THUMB);
231 layoutSections(); 221 layoutSections();
232 </script> 222 </script>
233 </html> 223 </html>
OLDNEW
« no previous file with comments | « chrome/browser/prefs/pref_service.h ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698