Title: [91162] trunk/Source/WebKit2
Revision
91162
Author
[email protected]
Date
2011-07-16 21:21:47 -0700 (Sat, 16 Jul 2011)

Log Message

2011-07-16  Daniel Bates  <[email protected]>

        Fix Qt Linux Release build after changeset <http://trac.webkit.org/changeset/91085>
        (https://bugs.webkit.org/show_bug.cgi?id=64611).

        Stub out scale factor-variant implementation of ShareableBitmap::paint().
        We'll need to implement this. See <https://bugs.webkit.org/show_bug.cgi?id=64663>
        for more details.

        * Shared/qt/ShareableBitmapQt.cpp:
        (WebKit::ShareableBitmap::paint): Added scale-factor variant.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (91161 => 91162)


--- trunk/Source/WebKit2/ChangeLog	2011-07-17 02:34:10 UTC (rev 91161)
+++ trunk/Source/WebKit2/ChangeLog	2011-07-17 04:21:47 UTC (rev 91162)
@@ -1,3 +1,15 @@
+2011-07-16  Daniel Bates  <[email protected]>
+
+        Fix Qt Linux Release build after changeset <http://trac.webkit.org/changeset/91085>
+        (https://bugs.webkit.org/show_bug.cgi?id=64611).
+
+        Stub out scale factor-variant implementation of ShareableBitmap::paint().
+        We'll need to implement this. See <https://bugs.webkit.org/show_bug.cgi?id=64663>
+        for more details.
+
+        * Shared/qt/ShareableBitmapQt.cpp:
+        (WebKit::ShareableBitmap::paint): Added scale-factor variant.
+
 2011-07-16  Simon Fraser  <[email protected]>
 
         Add code to attempt to align compositing layers to pixel boundaries when page scale changes

Modified: trunk/Source/WebKit2/Shared/qt/ShareableBitmapQt.cpp (91161 => 91162)


--- trunk/Source/WebKit2/Shared/qt/ShareableBitmapQt.cpp	2011-07-17 02:34:10 UTC (rev 91161)
+++ trunk/Source/WebKit2/Shared/qt/ShareableBitmapQt.cpp	2011-07-17 04:21:47 UTC (rev 91162)
@@ -30,6 +30,7 @@
 #include <QPainter>
 #include <WebCore/BitmapImage.h>
 #include <WebCore/GraphicsContext.h>
+#include <WebCore/NotImplemented.h>
 
 using namespace WebCore;
 
@@ -65,4 +66,10 @@
     painter->drawImage(dstPoint, image, QRect(srcRect));
 }
 
+void ShareableBitmap::paint(GraphicsContext& /*context*/, float /*scaleFactor*/, const IntPoint& /*dstPoint*/, const IntRect& /*srcRect*/)
+{
+    // See <https://bugs.webkit.org/show_bug.cgi?id=64663>.
+    notImplemented();
+}
+
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to