Title: [92778] trunk/Source/WebKit2
Revision
92778
Author
[email protected]
Date
2011-08-10 11:30:08 -0700 (Wed, 10 Aug 2011)

Log Message

Accidentally commented out an assertion in BackingStore::incorporateUpdate
https://bugs.webkit.org/show_bug.cgi?id=65989

Reviewed by Anders Carlsson.

I couldn't get this assertion to fire in quick testing, let's bring it back.

* UIProcess/BackingStore.cpp: (WebKit::BackingStore::incorporateUpdate):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (92777 => 92778)


--- trunk/Source/WebKit2/ChangeLog	2011-08-10 17:58:00 UTC (rev 92777)
+++ trunk/Source/WebKit2/ChangeLog	2011-08-10 18:30:08 UTC (rev 92778)
@@ -1,3 +1,14 @@
+2011-08-10  Alexey Proskuryakov  <[email protected]>
+
+        Accidentally commented out an assertion in BackingStore::incorporateUpdate
+        https://bugs.webkit.org/show_bug.cgi?id=65989
+
+        Reviewed by Anders Carlsson.
+
+        I couldn't get this assertion to fire in quick testing, let's bring it back.
+
+        * UIProcess/BackingStore.cpp: (WebKit::BackingStore::incorporateUpdate):
+
 2011-08-10  Lars Knudsen  <[email protected]>
 
         Add device specific settings to support viewport computing

Modified: trunk/Source/WebKit2/UIProcess/BackingStore.cpp (92777 => 92778)


--- trunk/Source/WebKit2/UIProcess/BackingStore.cpp	2011-08-10 17:58:00 UTC (rev 92777)
+++ trunk/Source/WebKit2/UIProcess/BackingStore.cpp	2011-08-10 18:30:08 UTC (rev 92778)
@@ -52,7 +52,7 @@
 
 void BackingStore::incorporateUpdate(const UpdateInfo& updateInfo)
 {
-//    ASSERT(m_size == updateInfo.viewSize);
+    ASSERT(m_size == updateInfo.viewSize);
     
     RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(updateInfo.bitmapHandle);
     if (!bitmap)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to