Title: [122569] trunk/Source/WebCore
Revision
122569
Author
[email protected]
Date
2012-07-13 05:56:44 -0700 (Fri, 13 Jul 2012)

Log Message

[CSS Regions] Fix build for bug 89000
https://bugs.webkit.org/show_bug.cgi?id=91215

Patch by Andrei Bucur <[email protected]> on 2012-07-13
Reviewed by Kentaro Hara.

Remove the unused variable m_state that was a leftover from a previous version of the patch.

Tests: No new tests, build fix.

* dom/WebKitNamedFlow.cpp:
(WebCore::WebKitNamedFlow::WebKitNamedFlow):
* dom/WebKitNamedFlow.h:
(WebKitNamedFlow):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122568 => 122569)


--- trunk/Source/WebCore/ChangeLog	2012-07-13 12:53:44 UTC (rev 122568)
+++ trunk/Source/WebCore/ChangeLog	2012-07-13 12:56:44 UTC (rev 122569)
@@ -1,3 +1,18 @@
+2012-07-13  Andrei Bucur  <[email protected]>
+        [CSS Regions] Fix build for bug 89000
+        https://bugs.webkit.org/show_bug.cgi?id=91215
+
+        Reviewed by Kentaro Hara.
+
+        Remove the unused variable m_state that was a leftover from a previous version of the patch.
+
+        Tests: No new tests, build fix.
+
+        * dom/WebKitNamedFlow.cpp:
+        (WebCore::WebKitNamedFlow::WebKitNamedFlow):
+        * dom/WebKitNamedFlow.h:
+        (WebKitNamedFlow):
+
 2012-07-13  Kenichi Ishibashi  <[email protected]>
 
         [Chromium] Fix bugs in HarfBuzzShaper

Modified: trunk/Source/WebCore/dom/WebKitNamedFlow.cpp (122568 => 122569)


--- trunk/Source/WebCore/dom/WebKitNamedFlow.cpp	2012-07-13 12:53:44 UTC (rev 122568)
+++ trunk/Source/WebCore/dom/WebKitNamedFlow.cpp	2012-07-13 12:56:44 UTC (rev 122569)
@@ -41,7 +41,6 @@
     : m_flowThreadName(flowThreadName)
     , m_flowManager(manager)
     , m_parentFlowThread(0)
-    , m_state(FlowStateCreated)
 {
 }
 

Modified: trunk/Source/WebCore/dom/WebKitNamedFlow.h (122568 => 122569)


--- trunk/Source/WebCore/dom/WebKitNamedFlow.h	2012-07-13 12:53:44 UTC (rev 122568)
+++ trunk/Source/WebCore/dom/WebKitNamedFlow.h	2012-07-13 12:56:44 UTC (rev 122569)
@@ -70,8 +70,6 @@
 
     RefPtr<WebKitNamedFlowCollection> m_flowManager;
     RenderNamedFlowThread* m_parentFlowThread;
-
-    FlowState m_state;
 };
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to