Title: [98402] trunk/Source/WebCore
- Revision
- 98402
- Author
- [email protected]
- Date
- 2011-10-25 15:55:50 -0700 (Tue, 25 Oct 2011)
Log Message
Forward declare MutationObserverEntry as a struct to fix clang build
https://bugs.webkit.org/show_bug.cgi?id=70853
Reviewed by Ryosuke Niwa.
Node.h forward declared MutationObserverEntry as a class, and clang
complains if the two declarations don't match.
* dom/Node.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (98401 => 98402)
--- trunk/Source/WebCore/ChangeLog 2011-10-25 22:51:34 UTC (rev 98401)
+++ trunk/Source/WebCore/ChangeLog 2011-10-25 22:55:50 UTC (rev 98402)
@@ -1,3 +1,15 @@
+2011-10-25 Adam Klein <[email protected]>
+
+ Forward declare MutationObserverEntry as a struct to fix clang build
+ https://bugs.webkit.org/show_bug.cgi?id=70853
+
+ Reviewed by Ryosuke Niwa.
+
+ Node.h forward declared MutationObserverEntry as a class, and clang
+ complains if the two declarations don't match.
+
+ * dom/Node.h:
+
2011-10-25 Dan Bernstein <[email protected]>
Caret can be positioned or repainted incorrectly in flipped-blocks multi-column blocks
Modified: trunk/Source/WebCore/dom/Node.h (98401 => 98402)
--- trunk/Source/WebCore/dom/Node.h 2011-10-25 22:51:34 UTC (rev 98401)
+++ trunk/Source/WebCore/dom/Node.h 2011-10-25 22:55:50 UTC (rev 98402)
@@ -59,7 +59,6 @@
class HTMLInputElement;
class IntRect;
class KeyboardEvent;
-class MutationObserverEntry;
class NSResolver;
class NamedNodeMap;
class NameNodeList;
@@ -82,6 +81,8 @@
class TagNodeList;
class TreeScope;
+struct MutationObserverEntry;
+
typedef int ExceptionCode;
const int nodeStyleChangeShift = 25;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes