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

kbalazs at webkit.org kbalazs at webkit.org
Wed Dec 22 14:22:57 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 595859c5b8fd8d7389b46ffabf5a0ca4b45275d3
Author: kbalazs at webkit.org <kbalazs at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 7 14:56:02 2010 +0000

    2010-10-07  Balazs Kelemen  <kbalazs at webkit.org>
    
            Unreviewed. Do a renaming that was recommended by the reviewer
            (Kenneth) but I forgot to do before landing (http://trac.webkit.org/changeset/69253)
    
            * WebKitTestRunner/qt/TestControllerQt.cpp:
            (WTR::RunUntilConditionLoop::start):
            (WTR::RunUntilConditionLoop::RunUntilConditionLoop):
            (WTR::TestController::runUntil):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69308 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 0f6c739..b9b9a7d 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,15 @@
 2010-10-07  Balazs Kelemen  <kbalazs at webkit.org>
 
+        Unreviewed. Do a renaming that was recommended by the reviewer
+        (Kenneth) but I forgot to do before landing (http://trac.webkit.org/changeset/69253)
+
+        * WebKitTestRunner/qt/TestControllerQt.cpp:
+        (WTR::RunUntilConditionLoop::start):
+        (WTR::RunUntilConditionLoop::RunUntilConditionLoop):
+        (WTR::TestController::runUntil):
+
+2010-10-07  Balazs Kelemen  <kbalazs at webkit.org>
+
         Reviewed by Kenneth Rohde Christiansen.
 
         [Qt] Watchdog timer implementation for WTR
diff --git a/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp b/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
index 05218d0..54eb0a5 100644
--- a/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
+++ b/WebKitTools/WebKitTestRunner/qt/TestControllerQt.cpp
@@ -35,18 +35,18 @@ namespace WTR {
 
 static const unsigned kTimerIntervalMS = 50;
 
-class RunUntilLoop : public QObject {
+class RunUntilConditionLoop : public QObject {
     Q_OBJECT
 
 public:
     static void start(bool& done)
     {
-        static RunUntilLoop* instance = new RunUntilLoop;
+        static RunUntilConditionLoop* instance = new RunUntilConditionLoop;
         instance->run(done);
     }
 
 private:
-    RunUntilLoop() {}
+    RunUntilConditionLoop() {}
 
     void run(bool& done)
     {
@@ -76,7 +76,7 @@ void TestController::platformInitialize()
 
 void TestController::runUntil(bool& done)
 {
-    RunUntilLoop::start(done);
+    RunUntilConditionLoop::start(done);
     ASSERT(done);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list