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

Side by Side Diff: chrome/browser/resources/ntp/apps.js

Issue 5019005: Add "open as window" menu item to NTP app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add test. Created 10 years, 1 month 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var MAX_APPS_PER_ROW = []; 5 var MAX_APPS_PER_ROW = [];
6 MAX_APPS_PER_ROW[LayoutMode.SMALL] = 4; 6 MAX_APPS_PER_ROW[LayoutMode.SMALL] = 4;
7 MAX_APPS_PER_ROW[LayoutMode.NORMAL] = 6; 7 MAX_APPS_PER_ROW[LayoutMode.NORMAL] = 6;
8 8
9 // The URL prefix used in the app link 'ping' attributes. 9 // The URL prefix used in the app link 'ping' attributes.
10 var PING_APP_LAUNCH_PREFIX = 'record-app-launch'; 10 var PING_APP_LAUNCH_PREFIX = 'record-app-launch';
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 function handleClick(e) { 143 function handleClick(e) {
144 var appId = e.currentTarget.getAttribute('app-id'); 144 var appId = e.currentTarget.getAttribute('app-id');
145 launchApp(appId); 145 launchApp(appId);
146 return false; 146 return false;
147 } 147 }
148 148
149 // Keep in sync with LaunchType in extension_prefs.h 149 // Keep in sync with LaunchType in extension_prefs.h
150 var LaunchType = { 150 var LaunchType = {
151 LAUNCH_PINNED: 0, 151 LAUNCH_PINNED: 0,
152 LAUNCH_REGULAR: 1, 152 LAUNCH_REGULAR: 1,
153 LAUNCH_FULLSCREEN: 2 153 LAUNCH_FULLSCREEN: 2,
154 LAUNCH_WINDOW: 3
154 }; 155 };
155 156
156 // Keep in sync with LaunchContainer in extension.h 157 // Keep in sync with LaunchContainer in extension_constants.h
157 var LaunchContainer = { 158 var LaunchContainer = {
158 LAUNCH_WINDOW: 0, 159 LAUNCH_WINDOW: 0,
159 LAUNCH_PANEL: 1, 160 LAUNCH_PANEL: 1,
160 LAUNCH_TAB: 2 161 LAUNCH_TAB: 2
161 }; 162 };
162 163
163 var currentApp; 164 var currentApp;
164 165
165 function addContextMenu(el, app) { 166 function addContextMenu(el, app) {
166 el.addEventListener('contextmenu', cr.ui.contextMenuHandler); 167 el.addEventListener('contextmenu', cr.ui.contextMenuHandler);
(...skipping 10 matching lines...) Expand all
177 var appLinkSel = '.app a[app-id=' + app['id'] + ']'; 178 var appLinkSel = '.app a[app-id=' + app['id'] + ']';
178 var launchType = 179 var launchType =
179 el.querySelector(appLinkSel).getAttribute('launch-type'); 180 el.querySelector(appLinkSel).getAttribute('launch-type');
180 181
181 var launchContainer = app['launch_container']; 182 var launchContainer = app['launch_container'];
182 var isPanel = launchContainer == LaunchContainer.LAUNCH_PANEL; 183 var isPanel = launchContainer == LaunchContainer.LAUNCH_PANEL;
183 184
184 // Update the commands related to the launch type. 185 // Update the commands related to the launch type.
185 var launchTypeIds = ['apps-launch-type-pinned', 186 var launchTypeIds = ['apps-launch-type-pinned',
186 'apps-launch-type-regular', 187 'apps-launch-type-regular',
187 'apps-launch-type-fullscreen']; 188 'apps-launch-type-fullscreen',
189 'apps-launch-type-window'];
188 launchTypeIds.forEach(function(id) { 190 launchTypeIds.forEach(function(id) {
189 var command = $(id); 191 var command = $(id);
190 command.disabled = isPanel; 192 command.disabled = isPanel;
191 command.checked = !isPanel && 193 command.checked = !isPanel &&
192 launchType == command.getAttribute('launch-type'); 194 launchType == command.getAttribute('launch-type');
193 }); 195 });
194 196
195 return $('app-context-menu'); 197 return $('app-context-menu');
196 } 198 }
197 }); 199 });
(...skipping 10 matching lines...) Expand all
208 break; 210 break;
209 case 'apps-launch-command': 211 case 'apps-launch-command':
210 launchApp(currentApp['id']); 212 launchApp(currentApp['id']);
211 break; 213 break;
212 case 'apps-uninstall-command': 214 case 'apps-uninstall-command':
213 chrome.send('uninstallApp', [currentApp['id']]); 215 chrome.send('uninstallApp', [currentApp['id']]);
214 break; 216 break;
215 case 'apps-launch-type-pinned': 217 case 'apps-launch-type-pinned':
216 case 'apps-launch-type-regular': 218 case 'apps-launch-type-regular':
217 case 'apps-launch-type-fullscreen': 219 case 'apps-launch-type-fullscreen':
220 case 'apps-launch-type-window':
218 chrome.send('setLaunchType', 221 chrome.send('setLaunchType',
219 [currentApp['id'], e.command.getAttribute('launch-type')]); 222 [currentApp['id'], e.command.getAttribute('launch-type')]);
220 break; 223 break;
221 } 224 }
222 }); 225 });
223 226
224 document.addEventListener('canExecute', function(e) { 227 document.addEventListener('canExecute', function(e) {
225 switch (e.command.id) { 228 switch (e.command.id) {
226 case 'apps-options-command': 229 case 'apps-options-command':
227 e.canExecute = currentApp && currentApp['options_url']; 230 e.canExecute = currentApp && currentApp['options_url'];
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 var elm = createElement({ 314 var elm = createElement({
312 'id': 'web-store-entry', 315 'id': 'web-store-entry',
313 'name': localStrings.getString('web_store_title'), 316 'name': localStrings.getString('web_store_title'),
314 'launch_url': localStrings.getString('web_store_url') 317 'launch_url': localStrings.getString('web_store_url')
315 }); 318 });
316 elm.setAttribute('app-id', 'web-store-entry'); 319 elm.setAttribute('app-id', 'web-store-entry');
317 return elm; 320 return elm;
318 } 321 }
319 }; 322 };
320 })(); 323 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698