本文整理汇总了C++中InjectedScriptCanvasModule类的典型用法代码示例。如果您正苦于以下问题:C++ InjectedScriptCanvasModule类的具体用法?C++ InjectedScriptCanvasModule怎么用?C++ InjectedScriptCanvasModule使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了InjectedScriptCanvasModule类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: injectedScriptCanvasModule
ScriptObject InspectorCanvasAgent::wrapCanvas2DRenderingContextForInstrumentation(const ScriptObject& context)
{
ErrorString error;
InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, context);
if (module.isEmpty())
return ScriptObject();
return notifyRenderingContextWasWrapped(module.wrapCanvas2DContext(context));
}
示例2: injectedScriptCanvasModule
ScriptObject InspectorCanvasAgent::wrapWebGLRenderingContextForInstrumentation(const ScriptObject& glContext)
{
ErrorString error;
InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, glContext);
if (module.hasNoValue())
return ScriptObject();
return notifyRenderingContextWasWrapped(module.wrapWebGLContext(glContext));
}
示例3: InjectedScriptCanvasModule
InjectedScriptCanvasModule InspectorCanvasAgent::injectedScriptCanvasModule(ErrorString* errorString, ScriptState* scriptState)
{
if (!checkIsEnabled(errorString))
return InjectedScriptCanvasModule();
InjectedScriptCanvasModule module = InjectedScriptCanvasModule::moduleForState(m_injectedScriptManager, scriptState);
if (module.hasNoValue()) {
ASSERT_NOT_REACHED();
*errorString = "Internal error: no Canvas module";
}
return module;
}
示例4: moduleForState
InjectedScriptCanvasModule InjectedScriptCanvasModule::moduleForState(InjectedScriptManager* injectedScriptManager, JSC::ExecState* scriptState)
{
InjectedScriptCanvasModule result;
result.ensureInjected(injectedScriptManager, scriptState);
return result;
}
示例5: injectedScriptCanvasModule
void InspectorCanvasAgent::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState)
{
InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
if (!module.hasNoValue())
module.evaluateTraceLogCallArgument(errorString, traceLogId, callIndex, argumentIndex, objectGroup ? *objectGroup : String(), &result, &resourceState);
}
示例6: injectedScriptCanvasModule
void InspectorCanvasAgent::getResourceInfo(ErrorString* errorString, const String& resourceId, RefPtr<ResourceInfo>& result)
{
InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, resourceId);
if (!module.hasNoValue())
module.resourceInfo(errorString, resourceId, &result);
}