blob: 56859500be36464a3a174d62c2aa9af38da5a172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
import { Utils } from "/tests/dom/quota/test/modules/Utils.js";
export const UtilsParent = {
async OnMessageReceived(worker, msg) {
switch (msg.op) {
case "getCachedOriginUsage": {
const result = await Utils.getCachedOriginUsage();
worker.postMessage(result);
break;
}
default:
throw new Error(`Unknown op ${msg.op}`);
}
},
};
|