Title: [131154] trunk/Tools
Revision
131154
Author
[email protected]
Date
2012-10-12 00:31:35 -0700 (Fri, 12 Oct 2012)

Log Message

Unreviewed compile error fix for chromium windows bot.

* TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (131153 => 131154)


--- trunk/Tools/ChangeLog	2012-10-12 07:26:20 UTC (rev 131153)
+++ trunk/Tools/ChangeLog	2012-10-12 07:31:35 UTC (rev 131154)
@@ -1,5 +1,11 @@
 2012-10-12  Ilya Tikhonovsky  <[email protected]>
 
+        Unreviewed compile error fix for chromium windows bot.
+
+        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
+
+2012-10-12  Ilya Tikhonovsky  <[email protected]>
+
         Another unreviewed fix for clang builders.
 
         * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp (131153 => 131154)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp	2012-10-12 07:26:20 UTC (rev 131153)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp	2012-10-12 07:31:35 UTC (rev 131154)
@@ -95,7 +95,7 @@
 private:
     class Client : public WTF::MemoryInstrumentationClient {
     public:
-        virtual void countObjectSize(const MemoryObjectType objectType, size_t size)
+        virtual void countObjectSize(MemoryObjectType objectType, size_t size)
         {
             TypeToSizeMap::AddResult result = m_totalSizes.add(objectType, size);
             if (!result.isNewEntry)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to