Changeset 89296 in webkit


Ignore:
Timestamp:
Jun 20, 2011 3:21:48 PM (13 years ago)
Author:
jer.noble@apple.com
Message:

Unreviewed build fix; Fix Leopard WebCore build.

  • platform/mac/WebVideoFullscreenHUDWindowController.mm: On Leopard, NSWindowDelegate

is a category, not a protocol.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r89293 r89296  
     12011-06-20  Jer Noble  <jer.noble@apple.com>
     2
     3        Unreviewed build fix; Fix Leopard WebCore build.
     4
     5        * platform/mac/WebVideoFullscreenHUDWindowController.mm: On Leopard, NSWindowDelegate
     6            is a category, not a protocol.
     7
    182011-06-20  Ryosuke Niwa  <rniwa@webkit.org>
    29
  • trunk/Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.mm

    r89292 r89296  
    4848#define HAVE_MEDIA_CONTROL (!defined(BUILDING_ON_LEOPARD))
    4949
    50 @interface WebVideoFullscreenHUDWindowController (Private) <NSWindowDelegate>
     50@interface WebVideoFullscreenHUDWindowController (Private)
     51#if !defined(BUILDING_ON_LEOPARD)
     52<NSWindowDelegate>
     53#endif
    5154
    5255- (void)updateTime;
Note: See TracChangeset for help on using the changeset viewer.