Title: [90057] trunk/Source/WebCore
Revision
90057
Author
bfulg...@webkit.org
Date
2011-06-29 15:52:10 -0700 (Wed, 29 Jun 2011)

Log Message

Speculative WinCE build correction after r90053.

* platform/graphics/GraphicsContext.h:
(WebCore::GraphicsContext::inTransparencyLayer): Provide
stub implementation for 'inTransparencyLayer'.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90056 => 90057)


--- trunk/Source/WebCore/ChangeLog	2011-06-29 22:42:04 UTC (rev 90056)
+++ trunk/Source/WebCore/ChangeLog	2011-06-29 22:52:10 UTC (rev 90057)
@@ -1,3 +1,11 @@
+2011-06-29  Brent Fulgham  <bfulg...@webkit.org>
+
+        Speculative WinCE build correction after r90053.
+
+        * platform/graphics/GraphicsContext.h:
+        (WebCore::GraphicsContext::inTransparencyLayer): Provide
+        stub implementation for 'inTransparencyLayer'.
+
 2011-06-29  Xu Fan  <qifuren1...@gmail.com>
 
         Reviewed by Brent Fulgham.

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext.h (90056 => 90057)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext.h	2011-06-29 22:42:04 UTC (rev 90056)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext.h	2011-06-29 22:52:10 UTC (rev 90057)
@@ -421,6 +421,7 @@
         void drawBitmap(SharedBitmap*, const IntRect& dstRect, const IntRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp);
         void drawBitmapPattern(SharedBitmap*, const FloatRect& tileRectIn, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect, const IntSize& origSourceSize);
         void drawIcon(HICON icon, const IntRect& dstRect, UINT flags);
+        bool inTransparencyLayer() const { return false; }
         HDC getWindowsContext(const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
         void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true);    // The passed in HDC should be the one handed back by getWindowsContext.
         void drawRoundCorner(bool newClip, RECT clipRect, RECT rectWin, HDC dc, int width, int height);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to