本文整理汇总了C++中MessagePort::start方法的典型用法代码示例。如果您正苦于以下问题:C++ MessagePort::start方法的具体用法?C++ MessagePort::start怎么用?C++ MessagePort::start使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MessagePort
的用法示例。
在下文中一共展示了MessagePort::start方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: startCallback
static v8::Handle<v8::Value> startCallback(const v8::Arguments& args)
{
INC_STATS("DOM.MessagePort.start");
MessagePort* imp = V8MessagePort::toNative(args.Holder());
imp->start();
return v8::Handle<v8::Value>();
}
示例2: jsMessagePortPrototypeFunctionStart
JSValue JSC_HOST_CALL jsMessagePortPrototypeFunctionStart(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args)
{
UNUSED_PARAM(args);
if (!thisValue.inherits(&JSMessagePort::s_info))
return throwError(exec, TypeError);
JSMessagePort* castedThisObj = static_cast<JSMessagePort*>(asObject(thisValue));
MessagePort* imp = static_cast<MessagePort*>(castedThisObj->impl());
imp->start();
return jsUndefined();
}
示例3: jsMessagePortPrototypeFunctionStart
EncodedJSValue JSC_HOST_CALL jsMessagePortPrototypeFunctionStart(ExecState* exec)
{
JSValue thisValue = exec->hostThisValue();
if (!thisValue.inherits(&JSMessagePort::s_info))
return throwVMTypeError(exec);
JSMessagePort* castedThis = static_cast<JSMessagePort*>(asObject(thisValue));
ASSERT_GC_OBJECT_INHERITS(castedThis, &JSMessagePort::s_info);
MessagePort* imp = static_cast<MessagePort*>(castedThis->impl());
imp->start();
return JSValue::encode(jsUndefined());
}
示例4: startCallback
static v8::Handle<v8::Value> startCallback(const v8::Arguments& args)
{
MessagePort* imp = V8MessagePort::toNative(args.Holder());
imp->start();
return v8Undefined();
}