JSC::JSValue JSWorker::postMessage(JSC::ExecState* exec)
{
    return handlePostMessage(exec, &impl());
}
Exemplo n.º 2
0
JSValue JSDOMWindow::postMessage(ExecState& state)
{
    return handlePostMessage(wrapped(), state);
}
Exemplo n.º 3
0
JSC::JSValue JSWorker::postMessage(JSC::ExecState* exec, const JSC::ArgList& args)
{
    return handlePostMessage(exec, args, impl());
}
Exemplo n.º 4
0
JSC::JSValue JSMessagePort::postMessage(JSC::ExecState* exec)
{
    return handlePostMessage(exec, impl());
}
Exemplo n.º 5
0
JSC::JSValue JSWorker::postMessage(JSC::ExecState& state)
{
    return handlePostMessage(state, &wrapped());
}
Exemplo n.º 6
0
JSValue JSDOMWindow::postMessage(ExecState* exec)
{
    return handlePostMessage(impl(), exec);
}
JSC::JSValue JSDedicatedWorkerContext::webkitPostMessage(JSC::ExecState* exec)
{
    return handlePostMessage(exec, impl());
}