From 9c66e9d2ca2e133a18e36118108c50ed5bdd2895 Mon Sep 17 00:00:00 2001 From: "ossy@webkit.org" Date: Tue, 27 Sep 2011 06:15:20 +0000 Subject: [PATCH] [Qt][WK2] Unreviewed buildfix after r96005. * WebKitTestRunner/qt/TestInvocationQt.cpp: (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@96071 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Tools/ChangeLog | 7 +++++++ Tools/WebKitTestRunner/qt/TestInvocationQt.cpp | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 7db10be..abc508f 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,10 @@ +2011-09-26 Csaba Osztrogonác + + [Qt][WK2] Unreviewed buildfix after r96005. + + * WebKitTestRunner/qt/TestInvocationQt.cpp: + (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): + 2011-09-26 Dimitri Glazkov garden-o-matic should be pretty in Open Sans. diff --git a/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp b/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp index fb439d6..5ea6649 100644 --- a/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp +++ b/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp @@ -59,8 +59,11 @@ static void dumpImage(const QImage& image) fflush(stdout); } -void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef imageRef) +void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef imageRef, WKArrayRef repaintRects) { + //FIXME: https://bugs.webkit.org/show_bug.cgi?id=68870 + UNUSED_PARAM(repaintRects); + QImage image = WKImageCreateQImage(imageRef); QCryptographicHash hash(QCryptographicHash::Md5); for (unsigned row = 0; row < image.height(); ++row) -- 2.7.4