Title: [107695] trunk/Source/WebKit/chromium
Revision
107695
Author
[email protected]
Date
2012-02-14 02:35:58 -0800 (Tue, 14 Feb 2012)

Log Message

[Chromium] Inconsistent initialization of CCSettings in WebLayerTreeView.
https://bugs.webkit.org/show_bug.cgi?id=76927

Patch by David Reveman <[email protected]> on 2012-02-14
Reviewed by James Robinson.

Remove unnecessary initialization and include maxPartialTextureUpdates
in FIXME comment.

* src/WebLayerTreeView.cpp:
(WebKit::WebLayerTreeView::Settings::operator CCSettings):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (107694 => 107695)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-02-14 10:21:20 UTC (rev 107694)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-02-14 10:35:58 UTC (rev 107695)
@@ -1,3 +1,16 @@
+2012-02-14  David Reveman  <[email protected]>
+
+        [Chromium] Inconsistent initialization of CCSettings in WebLayerTreeView.
+        https://bugs.webkit.org/show_bug.cgi?id=76927
+
+        Reviewed by James Robinson.
+
+        Remove unnecessary initialization and include maxPartialTextureUpdates
+        in FIXME comment.
+
+        * src/WebLayerTreeView.cpp:
+        (WebKit::WebLayerTreeView::Settings::operator CCSettings):
+
 2012-02-14  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r107661.

Modified: trunk/Source/WebKit/chromium/src/WebLayerTreeView.cpp (107694 => 107695)


--- trunk/Source/WebKit/chromium/src/WebLayerTreeView.cpp	2012-02-14 10:21:20 UTC (rev 107694)
+++ trunk/Source/WebKit/chromium/src/WebLayerTreeView.cpp	2012-02-14 10:35:58 UTC (rev 107695)
@@ -45,9 +45,7 @@
     settings.refreshRate = refreshRate;
     settings.partialSwapEnabled = partialSwapEnabled;
 
-    // FIXME: showFPSCounter / showPlatformLayerTree aren't supported currently.
-    settings.showFPSCounter = false;
-    settings.showPlatformLayerTree = false;
+    // FIXME: showFPSCounter / showPlatformLayerTree / perTilePainting / maxPartialTextureUpdates aren't supported currently.
     return settings;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to