[Webkit-unassigned] [Bug 26010] Serialize calls to WebInspector

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 25 12:41:25 PDT 2009


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





------- Comment #3 from mrowe at apple.com  2009-05-25 12:41 PDT -------
(From update of attachment 30652)
> +ScriptFunctionCall* InspectorFrontend::newFunctionCall(const String& functionName)
> +{
> +    ScriptFunctionCall* function = new ScriptFunctionCall(m_scriptState, m_webInspector, "dispatch");
> +    function->appendArgument(functionName);
> +    return function;
> +}

This would be an ideal place to use PassOwnPtr rather than a raw pointer, to
indicate that ownership of an object is being transferred out of the function.


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



More information about the webkit-unassigned mailing list