Changeset 33001 in webkit


Ignore:
Timestamp:
May 9, 2008 1:48:52 AM (16 years ago)
Author:
Simon Hausmann
Message:

2008-05-08 Marc Ordinas i Llopis <marc.ordinasillopis@collabora.co.uk>

Reviewed by Simon.

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

Based on work by Sriram Neelakandan for the Gtk port.

Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r32978 r33001  
     12008-05-08  Marc Ordinas i Llopis  <marc.ordinasillopis@collabora.co.uk>
     2
     3        Reviewed by Simon.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=18935
     6
     7        Based on work by Sriram Neelakandan for the Gtk port.
     8
     9        * WebCoreSupport/FrameLoaderClientQt.cpp: Initialize
     10        m_hasSentResponseToPlugin.
     11        (WebCore::FrameLoaderClientQt::FrameLoaderClientQt):
     12        (WebCore::FrameLoaderClientQt::redirectDataToPlugin):
     13
    1142008-05-08  Warwick Allison  <warwick@trolltech.com>
    215
  • trunk/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp

    r32766 r33001  
    136136    , m_webFrame(0)
    137137    , m_pluginView(0)
     138    , m_hasSentResponseToPlugin(false)
    138139    , m_firstData(false)
    139140    , m_policyFunction(0)
     
    10881089void FrameLoaderClientQt::redirectDataToPlugin(Widget* pluginWidget)
    10891090{
     1091    ASSERT(!m_pluginView);
    10901092    m_pluginView = static_cast<PluginView*>(pluginWidget);
     1093    m_hasSentResponseToPlugin = false;
    10911094}
    10921095
Note: See TracChangeset for help on using the changeset viewer.