[Webkit-unassigned] [Bug 43216] New: Script engine agnostic ScriptCallback class

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 29 15:14:31 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=43216

           Summary: Script engine agnostic ScriptCallback class
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore JavaScript
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: luiz at webkit.org


The objective is to  this kind of code to be script engine agnostic:

void doSomething(ScriptState* exec, ScriptValue function, bool p1, int p2, ...)
{
    ScriptCallback callback(exec, function);
    callback.appendArgument(p1);
    callback.appendArgument(p2);
    callback.call();
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list