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

bfulgham at webkit.org bfulgham at webkit.org
Wed Dec 22 15:46:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1bd4cdd32bbd03ccf6d60bed66bd13f76f461264
Author: bfulgham at webkit.org <bfulgham at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 12 00:19:47 2010 +0000

    Windows [Cairo] build fix. Unreviewed.
    
    Provide stubs for two BackingStore methods.
    
    * Shared/cairo/BackingStoreCairo.cpp:
    (WebKit::BackingStore::createFlippedGraphicsContext):
    (WebKit::BackingStore::paint):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71863 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index a39488f..8e3e6ab 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-11  Brent Fulgham  <bfulgham at webkit.org>
+
+        Windows [Cairo] build fix. Unreviewed.
+
+        Provide stubs for two BackingStore methods.
+
+        * Shared/cairo/BackingStoreCairo.cpp:
+        (WebKit::BackingStore::createFlippedGraphicsContext):
+        (WebKit::BackingStore::paint):
+
 2010-11-11  Brian Weinstein  <bweinstein at apple.com>
 
         Windows Build Fix. Change #imports to #includes.
diff --git a/WebKit2/Shared/cairo/BackingStoreCairo.cpp b/WebKit2/Shared/cairo/BackingStoreCairo.cpp
index 6a97afa..105c5e5 100644
--- a/WebKit2/Shared/cairo/BackingStoreCairo.cpp
+++ b/WebKit2/Shared/cairo/BackingStoreCairo.cpp
@@ -38,7 +38,13 @@ PassOwnPtr<GraphicsContext> BackingStore::createGraphicsContext()
     return 0;
 }
 
-void BackingStore::paint(GraphicsContext*, const IntRect&)
+PassOwnPtr<GraphicsContext> BackingStore::createFlippedGraphicsContext()
+{
+    notImplemented();
+    return 0;
+}
+
+void BackingStore::paint(GraphicsContext&, const IntPoint&, const IntRect&)
 {
     notImplemented();
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list