Title: [98754] branches/subpixellayout/Source/WebCore

Diff

Modified: branches/subpixellayout/Source/WebCore/WebCore.gypi (98753 => 98754)


--- branches/subpixellayout/Source/WebCore/WebCore.gypi	2011-10-28 19:58:04 UTC (rev 98753)
+++ branches/subpixellayout/Source/WebCore/WebCore.gypi	2011-10-28 20:10:24 UTC (rev 98754)
@@ -3416,6 +3416,9 @@
             'platform/graphics/cairo/RefPtrCairo.h',
             'platform/graphics/cairo/TransformationMatrixCairo.cpp',
             'platform/graphics/cg/ColorCG.cpp',
+            'platform/graphics/cg/FixedPointCG.cpp',
+            'platform/graphics/cg/FixedRectCG.cpp',
+            'platform/graphics/cg/FixedSizeCG.cpp',
             'platform/graphics/cg/FloatPointCG.cpp',
             'platform/graphics/cg/FloatRectCG.cpp',
             'platform/graphics/cg/FloatSizeCG.cpp',

Modified: branches/subpixellayout/Source/WebCore/platform/graphics/FixedRect.h (98753 => 98754)


--- branches/subpixellayout/Source/WebCore/platform/graphics/FixedRect.h	2011-10-28 19:58:04 UTC (rev 98753)
+++ branches/subpixellayout/Source/WebCore/platform/graphics/FixedRect.h	2011-10-28 20:10:24 UTC (rev 98754)
@@ -219,6 +219,7 @@
 
 #if (PLATFORM(MAC) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)) \
         || (PLATFORM(CHROMIUM) && OS(DARWIN))  || (PLATFORM(QT) && USE(QTKIT))
+    FixedRect(const NSRect&);
     operator NSRect() const;
 #endif
 

Modified: branches/subpixellayout/Source/WebCore/platform/graphics/FixedSize.h (98753 => 98754)


--- branches/subpixellayout/Source/WebCore/platform/graphics/FixedSize.h	2011-10-28 19:58:04 UTC (rev 98753)
+++ branches/subpixellayout/Source/WebCore/platform/graphics/FixedSize.h	2011-10-28 20:10:24 UTC (rev 98754)
@@ -121,7 +121,7 @@
     operator CGSize() const;
 #endif
 
-#if (PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT))) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
+#if (PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT)) || PLATFORM(CHROMIUM) && OS(DARWIN)) && !defined(NSGEOMETRY_TYPES_SAME_AS_CGGEOMETRY_TYPES)
     explicit FixedSize(const NSSize &); // don't do this implicitly since it's lossy
     operator NSSize() const;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to