Title: [110429] trunk/Source/WebCore
Revision
110429
Author
[email protected]
Date
2012-03-12 08:32:47 -0700 (Mon, 12 Mar 2012)

Log Message

Remove unused global static variable for BlackBerry.
https://bugs.webkit.org/show_bug.cgi?id=80790

Reviewed by Alexey Proskuryakov.

* platform/graphics/gpu/DrawingBuffer.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (110428 => 110429)


--- trunk/Source/WebCore/ChangeLog	2012-03-12 15:28:48 UTC (rev 110428)
+++ trunk/Source/WebCore/ChangeLog	2012-03-12 15:32:47 UTC (rev 110429)
@@ -1,5 +1,15 @@
 2012-03-12  George Staikos  <[email protected]>
 
+        Remove unused global static variable for BlackBerry.
+        https://bugs.webkit.org/show_bug.cgi?id=80790
+
+        Reviewed by Alexey Proskuryakov.
+
+        * platform/graphics/gpu/DrawingBuffer.cpp:
+        (WebCore):
+
+2012-03-12  George Staikos  <[email protected]>
+
         Correct usage of NDEBUG to fix warnings on BlackBerry.
         https://bugs.webkit.org/show_bug.cgi?id=80790
 

Modified: trunk/Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp (110428 => 110429)


--- trunk/Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp	2012-03-12 15:28:48 UTC (rev 110428)
+++ trunk/Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp	2012-03-12 15:32:47 UTC (rev 110429)
@@ -45,7 +45,7 @@
 // exceed the global cap will instead clear the buffer.
 #if PLATFORM(CHROMIUM) // Currently, this cap only exists for chromium.
 static int s_maximumResourceUsePixels = 16 * 1024 * 1024;
-#else
+#elif !PLATFORM(BLACKBERRY)
 static int s_maximumResourceUsePixels = 0;
 #endif
 static int s_currentResourceUsePixels = 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to