Title: [97835] trunk/Source/WebKit/chromium
Revision
97835
Author
[email protected]
Date
2011-10-18 23:42:29 -0700 (Tue, 18 Oct 2011)

Log Message

[chromium] Attempt to fix Linux Clang compilation error.

Unreviewed.

* tests/CCLayerTreeHostTest.cpp:
(WTF::CCLayerTreeHostTestThreadOnly::runTestThreaded):
(WTF::TEST_F):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (97834 => 97835)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-19 05:36:11 UTC (rev 97834)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-19 06:42:29 UTC (rev 97835)
@@ -1,3 +1,13 @@
+2011-10-18  Yuzo Fujishima  <[email protected]>
+
+        [chromium] Attempt to fix Linux Clang compilation error.
+
+        Unreviewed.
+
+        * tests/CCLayerTreeHostTest.cpp:
+        (WTF::CCLayerTreeHostTestThreadOnly::runTestThreaded):
+        (WTF::TEST_F):
+
 2011-10-18  James Robinson  <[email protected]>
 
         [chromium] Remove USE(THREADED_COMPOSITING) from the tree, this is controlled by a runtime setting

Modified: trunk/Source/WebKit/chromium/tests/CCLayerTreeHostTest.cpp (97834 => 97835)


--- trunk/Source/WebKit/chromium/tests/CCLayerTreeHostTest.cpp	2011-10-19 05:36:11 UTC (rev 97834)
+++ trunk/Source/WebKit/chromium/tests/CCLayerTreeHostTest.cpp	2011-10-19 06:42:29 UTC (rev 97835)
@@ -362,7 +362,7 @@
 
 class CCLayerTreeHostTestThreadOnly : public CCLayerTreeHostTest {
 public:
-    void runTest()
+    void runTestThreaded()
     {
         CCLayerTreeHostTest::runTest(true);
     }
@@ -513,7 +513,7 @@
 
 TEST_F(CCLayerTreeHostTestSetNeedsCommit1, runMultiThread)
 {
-    runTest();
+    runTestThreaded();
 }
 
 // A setNeedsCommit should lead to 1 commit. Issuing a second commit after that
@@ -557,7 +557,7 @@
 
 TEST_F(CCLayerTreeHostTestSetNeedsCommit2, runMultiThread)
 {
-    runTest();
+    runTestThreaded();
 }
 
 // 1 setNeedsRedraw after the first commit has completed should lead to 1
@@ -604,7 +604,7 @@
 
 TEST_F(CCLayerTreeHostTestSetNeedsRedraw, runMultiThread)
 {
-    runTest();
+    runTestThreaded();
 }
 
 class CCLayerTreeHostTestScrollSimple : public CCLayerTreeHostTestThreadOnly {
@@ -675,7 +675,7 @@
 
 TEST_F(CCLayerTreeHostTestScrollSimple, runMultiThread)
 {
-    runTest();
+    runTestThreaded();
 }
 
 class CCLayerTreeHostTestScrollMultipleRedraw : public CCLayerTreeHostTestThreadOnly {
@@ -749,7 +749,7 @@
 
 TEST_F(CCLayerTreeHostTestScrollMultipleRedraw, runMultiThread)
 {
-    runTest();
+    runTestThreaded();
 }
 
 } // namespace
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to