blob: cbf68ff0a5737cae78c38cac8a265ba8f4da1a25 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
RuntimeEnabled=WorkerTaskQueue,
SecureContext
] interface TaskWorklet : Worklet {
[CallWith=ScriptState] Task postTask(CallbackFunctionTreatedAsScriptValue task, any... arguments);
[CallWith=ScriptState] Task postTask(USVString task, any... arguments);
};