Title: [121327] trunk/Source/WebCore
Revision
121327
Author
[email protected]
Date
2012-06-27 00:48:24 -0700 (Wed, 27 Jun 2012)

Log Message

LabelableElement.cpp should include not ElementRareData.h but NodeRareData.h
https://bugs.webkit.org/show_bug.cgi?id=90047

Reviewed by Kent Tamura.

This is a simple refactoring. What LabelableElement uses is
not ElementRareData but NodeRareData.

No tests. No change in behavior.

* html/LabelableElement.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121326 => 121327)


--- trunk/Source/WebCore/ChangeLog	2012-06-27 07:28:31 UTC (rev 121326)
+++ trunk/Source/WebCore/ChangeLog	2012-06-27 07:48:24 UTC (rev 121327)
@@ -1,5 +1,19 @@
 2012-06-27  Kentaro Hara  <[email protected]>
 
+        LabelableElement.cpp should include not ElementRareData.h but NodeRareData.h
+        https://bugs.webkit.org/show_bug.cgi?id=90047
+
+        Reviewed by Kent Tamura.
+
+        This is a simple refactoring. What LabelableElement uses is
+        not ElementRareData but NodeRareData.
+
+        No tests. No change in behavior.
+
+        * html/LabelableElement.cpp:
+
+2012-06-27  Kentaro Hara  <[email protected]>
+
         [V8] Refactor V8BindingPerIsolateData::current() and V8BindingPerIsolateData::get()
         https://bugs.webkit.org/show_bug.cgi?id=90044
 

Modified: trunk/Source/WebCore/html/LabelableElement.cpp (121326 => 121327)


--- trunk/Source/WebCore/html/LabelableElement.cpp	2012-06-27 07:28:31 UTC (rev 121326)
+++ trunk/Source/WebCore/html/LabelableElement.cpp	2012-06-27 07:48:24 UTC (rev 121327)
@@ -25,8 +25,8 @@
 #include "config.h"
 #include "LabelableElement.h"
 
-#include "ElementRareData.h"
 #include "LabelsNodeList.h"
+#include "NodeRareData.h"
 #include "RenderStyle.h"
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to