Title: [208849] trunk/Source/WebCore
Revision
208849
Author
[email protected]
Date
2016-11-17 10:08:28 -0800 (Thu, 17 Nov 2016)

Log Message

Unreviewed, fix build after r208839.

* dom/Node.h:
(WebCore::Node::isDescendantOf):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208848 => 208849)


--- trunk/Source/WebCore/ChangeLog	2016-11-17 17:52:03 UTC (rev 208848)
+++ trunk/Source/WebCore/ChangeLog	2016-11-17 18:08:28 UTC (rev 208849)
@@ -1,3 +1,10 @@
+2016-11-17  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix build after r208839.
+
+        * dom/Node.h:
+        (WebCore::Node::isDescendantOf):
+
 2016-11-16  Dave Hyatt  <[email protected]>
 
         [CSS Parser] Add @supports, @keyframe and media query parsing options

Modified: trunk/Source/WebCore/dom/Node.h (208848 => 208849)


--- trunk/Source/WebCore/dom/Node.h	2016-11-17 17:52:03 UTC (rev 208848)
+++ trunk/Source/WebCore/dom/Node.h	2016-11-17 18:08:28 UTC (rev 208849)
@@ -387,7 +387,7 @@
     ExceptionOr<void> checkSetPrefix(const AtomicString& prefix);
 
     WEBCORE_EXPORT bool isDescendantOf(const Node&) const;
-    WEBCORE_EXPORT bool isDescendantOf(const Node* other) const { return other && isDescendantOf(*other); }
+    bool isDescendantOf(const Node* other) const { return other && isDescendantOf(*other); }
 
     bool isDescendantOrShadowDescendantOf(const Node*) const;
     WEBCORE_EXPORT bool contains(const Node*) const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to