Title: [89296] trunk/Source/WebCore
- Revision
- 89296
- Author
- [email protected]
- Date
- 2011-06-20 15:21:48 -0700 (Mon, 20 Jun 2011)
Log Message
Unreviewed build fix; Fix Leopard WebCore build.
* platform/mac/WebVideoFullscreenHUDWindowController.mm: On Leopard, NSWindowDelegate
is a category, not a protocol.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (89295 => 89296)
--- trunk/Source/WebCore/ChangeLog 2011-06-20 22:16:59 UTC (rev 89295)
+++ trunk/Source/WebCore/ChangeLog 2011-06-20 22:21:48 UTC (rev 89296)
@@ -1,3 +1,10 @@
+2011-06-20 Jer Noble <[email protected]>
+
+ Unreviewed build fix; Fix Leopard WebCore build.
+
+ * platform/mac/WebVideoFullscreenHUDWindowController.mm: On Leopard, NSWindowDelegate
+ is a category, not a protocol.
+
2011-06-20 Ryosuke Niwa <[email protected]>
Reviewed by Darin Adler.
Modified: trunk/Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.mm (89295 => 89296)
--- trunk/Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.mm 2011-06-20 22:16:59 UTC (rev 89295)
+++ trunk/Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.mm 2011-06-20 22:21:48 UTC (rev 89296)
@@ -47,7 +47,10 @@
#define HAVE_MEDIA_CONTROL (!defined(BUILDING_ON_LEOPARD))
-@interface WebVideoFullscreenHUDWindowController (Private) <NSWindowDelegate>
+@interface WebVideoFullscreenHUDWindowController (Private)
+#if !defined(BUILDING_ON_LEOPARD)
+<NSWindowDelegate>
+#endif
- (void)updateTime;
- (void)timelinePositionChanged:(id)sender;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes