blob: 352bfacc5dfacb142085c5a43c648cb226d7a975 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import operations from '../operations';
import * as tabs from '../background/tabs';
import * as zooms from '../background/zooms';
export function exec(operation, sender) {
switch (operation.type) {
case operations.TABS_CLOSE:
return tabs.closeTab(sender.tab.id);
case operations.TABS_REOPEN:
return tabs.reopenTab();
case operations.TABS_PREV:
return tabs.selectPrevTab(sender.tab.index, operation.count);
case operations.TABS_NEXT:
return tabs.selectNextTab(sender.tab.index, operation.count);
case operations.TABS_RELOAD:
return tabs.reload(sender.tab, operation.cache);
case operations.ZOOM_IN:
return zooms.zoomIn();
case operations.ZOOM_OUT:
return zooms.zoomOut();
case operations.ZOOM_NEUTRAL:
return zooms.neutral();
default:
return browser.tabs.sendMessage(sender.tab.id, {
type: 'require.content.operation',
operation
});
}
}
|