blob: 41ca7e2940ef01a7e4e8bb1117e1f3dd5ac8d9e3 (
plain)
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
31
32
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
import { Utils } from "resource://testing-common/dom/quota/test/modules/Utils.sys.mjs";
export const UtilsParent = {
async OnMessageReceived(worker, msg) {
switch (msg.op) {
case "getCachedOriginUsage": {
const result = await Utils.getCachedOriginUsage();
worker.postMessage(result);
break;
}
case "shrinkStorageSize": {
const result = await Utils.shrinkStorageSize(msg.size);
worker.postMessage(result);
break;
}
case "restoreStorageSize": {
const result = await Utils.restoreStorageSize();
worker.postMessage(result);
break;
}
default:
throw new Error(`Unknown op ${msg.op}`);
}
},
};
|