Title: [102731] trunk/Source/WebCore
Revision
102731
Author
[email protected]
Date
2011-12-13 20:11:24 -0800 (Tue, 13 Dec 2011)

Log Message

[Chromium] Initialize Settings::m_perTileDrawingEnabled properly.
https://bugs.webkit.org/show_bug.cgi?id=74476

Patch by David Reveman <[email protected]> on 2011-12-13
Reviewed by James Robinson.

Add m_perTileDrawingEnabled(false) to WebCore::Settings initialize list.

No new tests.

* page/Settings.cpp:
(WebCore::Settings::Settings):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (102730 => 102731)


--- trunk/Source/WebCore/ChangeLog	2011-12-14 03:12:15 UTC (rev 102730)
+++ trunk/Source/WebCore/ChangeLog	2011-12-14 04:11:24 UTC (rev 102731)
@@ -1,3 +1,17 @@
+2011-12-13  David Reveman  <[email protected]>
+
+        [Chromium] Initialize Settings::m_perTileDrawingEnabled properly.
+        https://bugs.webkit.org/show_bug.cgi?id=74476
+
+        Reviewed by James Robinson.
+
+        Add m_perTileDrawingEnabled(false) to WebCore::Settings initialize list.
+
+        No new tests.
+
+        * page/Settings.cpp:
+        (WebCore::Settings::Settings):
+
 2011-12-13  Anders Carlsson  <[email protected]>
 
         Add a very bare-bones implementation of bind and Function to WTF

Modified: trunk/Source/WebCore/page/Settings.cpp (102730 => 102731)


--- trunk/Source/WebCore/page/Settings.cpp	2011-12-14 03:12:15 UTC (rev 102730)
+++ trunk/Source/WebCore/page/Settings.cpp	2011-12-14 04:11:24 UTC (rev 102731)
@@ -232,6 +232,7 @@
     , m_shouldDisplayCaptions(false)
     , m_shouldDisplayTextDescriptions(false)
 #endif
+    , m_perTileDrawingEnabled(false)
     , m_loadsImagesAutomaticallyTimer(this, &Settings::loadsImagesAutomaticallyTimerFired)
 {
     // A Frame may not have been created yet, so we initialize the AtomicString 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to