author | Tooru Fujisawa <arai_a@mac.com> |
Wed, 23 Sep 2015 17:58:10 +0900 | |
changeset 265256 | e2c4a65fe7900c6b80be0f7ffe89fe4fb809b2cd |
parent 265255 | a4cee17afa634396cb5c6e9b2a50a20cc014f686 |
child 265257 | 97264d043924aa5605f271178fca371078468ba0 |
push id | 65891 |
push user | arai_a@mac.com |
push date | Wed, 30 Sep 2015 16:36:04 +0000 |
treeherder | mozilla-inbound@10194aec7255 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | Gijs |
bugs | 1207490 |
milestone | 44.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/modules/WindowsJumpLists.jsm +++ b/browser/modules/WindowsJumpLists.jsm @@ -97,41 +97,41 @@ var tasksCfg = [ * args - Command line args to invoke the task. * iconIndex - Optional win icon index into the main application for the * list item. * open - Boolean indicates if the command should be visible after the browser opens. * close - Boolean indicates if the command should be visible after the browser closes. */ // Open new tab { - get title() _getString("taskbar.tasks.newTab.label"), - get description() _getString("taskbar.tasks.newTab.description"), + get title() { return _getString("taskbar.tasks.newTab.label"); }, + get description() { return _getString("taskbar.tasks.newTab.description"); }, args: "-new-tab about:blank", iconIndex: 3, // New window icon open: true, close: true, // The jump list already has an app launch icon, but // we don't always update the list on shutdown. // Thus true for consistency. }, // Open new window { - get title() _getString("taskbar.tasks.newWindow.label"), - get description() _getString("taskbar.tasks.newWindow.description"), + get title() { return _getString("taskbar.tasks.newWindow.label"); }, + get description() { return _getString("taskbar.tasks.newWindow.description"); }, args: "-browser", iconIndex: 2, // New tab icon open: true, close: true, // No point, but we don't always update the list on // shutdown. Thus true for consistency. }, // Open new private window { - get title() _getString("taskbar.tasks.newPrivateWindow.label"), - get description() _getString("taskbar.tasks.newPrivateWindow.description"), + get title() { return _getString("taskbar.tasks.newPrivateWindow.label"); }, + get description() { return _getString("taskbar.tasks.newPrivateWindow.description"); }, args: "-private-window", iconIndex: 4, // Private browsing mode icon open: true, close: true, // No point, but we don't always update the list on // shutdown. Thus true for consistency. }, ];