Title: [135947] trunk/Source/WebCore
Revision
135947
Author
jer.no...@apple.com
Date
2012-11-27 16:53:55 -0800 (Tue, 27 Nov 2012)

Log Message

Unreviewed build fix; NSSize is not a CGSize in 32-bit.

* platform/mac/WebCoreFullScreenWarningView.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135946 => 135947)


--- trunk/Source/WebCore/ChangeLog	2012-11-28 00:48:37 UTC (rev 135946)
+++ trunk/Source/WebCore/ChangeLog	2012-11-28 00:53:55 UTC (rev 135947)
@@ -1,3 +1,9 @@
+2012-11-27  Jer Noble  <jer.no...@apple.com>
+
+        Unreviewed build fix; NSSize is not a CGSize in 32-bit.
+
+        * platform/mac/WebCoreFullScreenWarningView.mm:
+
 2012-11-27  Dean Jackson  <d...@apple.com>
 
         Attempted build fix for my last commit. The private member variable

Modified: trunk/Source/WebCore/platform/mac/WebCoreFullScreenWarningView.mm (135946 => 135947)


--- trunk/Source/WebCore/platform/mac/WebCoreFullScreenWarningView.mm	2012-11-28 00:48:37 UTC (rev 135946)
+++ trunk/Source/WebCore/platform/mac/WebCoreFullScreenWarningView.mm	2012-11-28 00:53:55 UTC (rev 135947)
@@ -41,7 +41,7 @@
 static const CGFloat WarningViewShadowWhite = 0.1;
 static const CGFloat WarningViewShadowAlpha = 1;
 static const float WarningViewShadowOpacity = 0.25;
-static const CGSize WarningViewShadowOffset = {0, -2};
+static const NSSize WarningViewShadowOffset = {0, -2};
 static const CGFloat WarningViewShadowRadius = 5;
 static const NSTimeInterval WarningViewHideDelay = 3;
 static const NSTimeInterval WarningViewFadeDuration = 0.5;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to