Title: [143106] trunk/Tools
Revision
143106
Author
[email protected]
Date
2013-02-16 10:27:07 -0800 (Sat, 16 Feb 2013)

Log Message

[chromium] initialize all variables of TestRunner classes
https://bugs.webkit.org/show_bug.cgi?id=110013

Reviewed by Adam Barth.

* DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
(WebTestRunner::TestInterfaces::TestInterfaces):
* DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
(WebTestRunner::TestRunner::TestRunner):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (143105 => 143106)


--- trunk/Tools/ChangeLog	2013-02-16 18:08:47 UTC (rev 143105)
+++ trunk/Tools/ChangeLog	2013-02-16 18:27:07 UTC (rev 143106)
@@ -1,5 +1,17 @@
 2013-02-16  Jochen Eisinger  <[email protected]>
 
+        [chromium] initialize all variables of TestRunner classes
+        https://bugs.webkit.org/show_bug.cgi?id=110013
+
+        Reviewed by Adam Barth.
+
+        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
+        (WebTestRunner::TestInterfaces::TestInterfaces):
+        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
+        (WebTestRunner::TestRunner::TestRunner):
+
+2013-02-16  Jochen Eisinger  <[email protected]>
+
         [chromium] destroy the TestPlugin when the destroy() method is invoked.
         https://bugs.webkit.org/show_bug.cgi?id=110012
 

Modified: trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp (143105 => 143106)


--- trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp	2013-02-16 18:08:47 UTC (rev 143105)
+++ trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp	2013-02-16 18:27:07 UTC (rev 143106)
@@ -55,6 +55,7 @@
     , m_webView(0)
     , m_delegate(0)
 {
+    resetAll();
 }
 
 TestInterfaces::~TestInterfaces()

Modified: trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp (143105 => 143106)


--- trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp	2013-02-16 18:08:47 UTC (rev 143105)
+++ trunk/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp	2013-02-16 18:27:07 UTC (rev 143106)
@@ -144,6 +144,7 @@
 
 TestRunner::TestRunner()
     : m_testIsRunning(false)
+    , m_closeRemainingWindows(false)
     , m_workQueue(this)
     , m_delegate(0)
     , m_webView(0)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to