[Webkit-unassigned] [Bug 45145] [Qt] V8 port for QT platform: v8 binding changes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Sep 3 16:40:11 PDT 2010


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





--- Comment #8 from Vlad <vladbph at gmail.com>  2010-09-03 16:40:11 PST ---
I'm trying to make it look like this

PassScriptInstance ScriptController::createScriptInstanceForWidget(Widget* widget)
{
...
#if PLATFORM(QT)
    // Create v8 object for QT plugins first
    PassScriptInstance instance = PlatformBridge::pluginScriptableObjectInstance(widget);
    if (instance)
        return instance;
#endif
    if (widget->isFrameView())
        return 0;
    NPObject* npObject = PlatformBridge::pluginScriptableObject(widget);
    if (!npObject)
        return 0;
...

-- 
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