Title: [93003] trunk/Source/WebCore
Revision
93003
Author
[email protected]
Date
2011-08-12 15:00:23 -0700 (Fri, 12 Aug 2011)

Log Message

[chromium] Fix comile warning on CCLayerTreeHost

* platform/graphics/chromium/cc/CCLayerTreeHost.cpp:
(WebCore::CCLayerTreeHost::CCLayerTreeHost):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (93002 => 93003)


--- trunk/Source/WebCore/ChangeLog	2011-08-12 21:44:14 UTC (rev 93002)
+++ trunk/Source/WebCore/ChangeLog	2011-08-12 22:00:23 UTC (rev 93003)
@@ -1,3 +1,10 @@
+2011-08-12  Nat Duca  <[email protected]>
+
+        [chromium] Fix comile warning on CCLayerTreeHost
+
+        * platform/graphics/chromium/cc/CCLayerTreeHost.cpp:
+        (WebCore::CCLayerTreeHost::CCLayerTreeHost):
+
 2011-08-12  Ryosuke Niwa  <[email protected]>
 
         Apple-style-span class seems unnecessary

Modified: trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp (93002 => 93003)


--- trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp	2011-08-12 21:44:14 UTC (rev 93002)
+++ trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHost.cpp	2011-08-12 22:00:23 UTC (rev 93003)
@@ -44,10 +44,10 @@
 }
 
 CCLayerTreeHost::CCLayerTreeHost(CCLayerTreeHostClient* client, const CCSettings& settings)
-    : m_animating(false)
+    : m_recreatingGraphicsContext(false)
+    , m_animating(false)
     , m_client(client)
     , m_frameNumber(0)
-    , m_recreatingGraphicsContext(false)
     , m_settings(settings)
 {
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to