Changeset 52875 in webkit


Ignore:
Timestamp:
Jan 6, 2010 3:20:53 PM (14 years ago)
Author:
mrowe@apple.com
Message:

Fix the Mac build.

  • WebCore.base.exp: Export symbols WebKit would like to use.
  • plugins/PluginWidget.h:

(WebCore::PluginWidget::PluginWidget): Redeclare a constructor.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52872 r52875  
     12010-01-06  Mark Rowe  <mrowe@apple.com>
     2
     3        Fix the Mac build.
     4
     5        * WebCore.base.exp: Export symbols WebKit would like to use.
     6        * plugins/PluginWidget.h:
     7        (WebCore::PluginWidget::PluginWidget): Redeclare a constructor.
     8
    192010-01-06  Kevin Decker  <kdecker@apple.com>
    210
  • trunk/WebCore/WebCore.base.exp

    r52331 r52875  
    248248__ZN7WebCore12IconDatabase5closeEv
    249249__ZN7WebCore12IconDatabase9setClientEPNS_18IconDatabaseClientE
     250__ZN7WebCore12PluginWidget14invalidateRectERKNS_7IntRectE
    250251__ZN7WebCore12RenderObject16repaintRectangleERKNS_7IntRectEb
    251252__ZN7WebCore12RenderWidget19showSubstituteImageEN3WTF10PassRefPtrINS_5ImageEEE
     
    984985__ZNK7WebCore9TimerBase8isActiveEv
    985986__ZTVN7WebCore12ChromeClientE
     987__ZTVN7WebCore12PluginWidgetE
    986988__ZTVN7WebCore17FileChooserClientE
    987989__ZTVN7WebCore17FrameLoaderClientE
     
    10231025_wkMeasureMediaUIPart
    10241026_wkMediaControllerThemeAvailable
     1027_wkNoteOpenPanelFiles
    10251028_wkPopupMenu
    10261029_wkQTIncludeOnlyModernMediaFileTypes
     
    10451048_wkSignalCFReadStreamError
    10461049_wkSignalCFReadStreamHasBytes
    1047 _wkNoteOpenPanelFiles
  • trunk/WebCore/plugins/PluginWidget.h

    r52872 r52875  
    3434class PluginWidget : public Widget {
    3535public:
     36    PluginWidget(PlatformWidget widget = 0) : Widget(widget) { }
     37
    3638    virtual void invalidateRect(const IntRect&);
    3739    virtual bool isPluginWidget() const { return true; }
  • trunk/WebKit/mac/ChangeLog

    r52874 r52875  
    1 2010-01-06  Sam Weinig  <sam@webkit.org>
    2 
    3         Attempt to fix non-Snow Leopard Mac build.
    4 
    5         * WebCoreSupport/WebFrameLoaderClient.mm:
    6 
    712010-01-06  Kevin Decker  <kdecker@apple.com>
    82
  • trunk/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm

    r52874 r52875  
    14801480class NetscapePluginWidget : public PluginWidget {
    14811481public:
     1482    NetscapePluginWidget(WebBaseNetscapePluginView *view)
     1483        : PluginWidget(view)
     1484    {
     1485    }
     1486   
    14821487    virtual void handleEvent(Event*)
    14831488    {
Note: See TracChangeset for help on using the changeset viewer.