[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

jer.noble at apple.com jer.noble at apple.com
Wed Dec 22 13:19:53 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e1a4b9756e4abfc7afea45109088d781e6d9217f
Author: jer.noble at apple.com <jer.noble at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 11 06:36:16 2010 +0000

    No review; build fix only.
    
    <CoreGraphics/CGFloat.h> does not exist on the build bots.  Replace
    instances of CGFAbs() with abs().
    
    * platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
    (WebCore::MediaPlayerPrivateQuickTimeVisualContext::naturalSize):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67286 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 653cc6e..7b7b9da 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-10  Jer Noble  <jer.noble at apple.com>
+
+        No review; build fix only.
+
+        <CoreGraphics/CGFloat.h> does not exist on the build bots.  Replace
+        instances of CGFAbs() with abs().
+
+        * platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
+        (WebCore::MediaPlayerPrivateQuickTimeVisualContext::naturalSize):
+
 2010-09-10  Dan Bernstein  <mitz at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp b/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp
index 4c25dce..1205fca 100644
--- a/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp
+++ b/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp
@@ -47,7 +47,6 @@
 #include "Timer.h"
 #include <AssertMacros.h>
 #include <CoreGraphics/CGContext.h>
-#include <CoreGraphics/CGFloat.h>
 #include <Wininet.h>
 #include <wtf/CurrentTime.h>
 #include <wtf/HashSet.h>
@@ -442,7 +441,7 @@ IntSize MediaPlayerPrivateQuickTimeVisualContext::naturalSize() const
     m_movie->getNaturalSize(width, height);
     CGSize originalSize = {width, height};
     CGSize transformedSize = CGSizeApplyAffineTransform(originalSize, m_movieTransform);
-    return IntSize(CGFAbs(transformedSize.width), CGFAbs(transformedSize.height));
+    return IntSize(abs(transformedSize.width), abs(transformedSize.height));
 }
 
 bool MediaPlayerPrivateQuickTimeVisualContext::hasVideo() const

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list