Title: [216590] branches/safari-603-branch/Source/WebCore
Revision
216590
Author
matthew_han...@apple.com
Date
2017-05-10 09:44:56 -0700 (Wed, 10 May 2017)

Log Message

Remove inadvertant change to ScrollView.h that was included in r216589.

Unreviewed build fix.

* platform/ScrollView.h:
(WebCore::ScrollView::children):

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/WebCore/ChangeLog (216589 => 216590)


--- branches/safari-603-branch/Source/WebCore/ChangeLog	2017-05-10 16:34:11 UTC (rev 216589)
+++ branches/safari-603-branch/Source/WebCore/ChangeLog	2017-05-10 16:44:56 UTC (rev 216590)
@@ -1,3 +1,12 @@
+2017-05-10  Matthew Hanson  <matthew_han...@apple.com>
+
+        Remove inadvertant change to ScrollView.h that was included in r216589.
+
+        Unreviewed build fix.
+
+        * platform/ScrollView.h:
+        (WebCore::ScrollView::children):
+
 2017-05-09  Matthew Hanson  <matthew_han...@apple.com>
 
         Cherry-pick r216131. rdar://problem/31967895

Modified: branches/safari-603-branch/Source/WebCore/platform/ScrollView.h (216589 => 216590)


--- branches/safari-603-branch/Source/WebCore/platform/ScrollView.h	2017-05-10 16:34:11 UTC (rev 216589)
+++ branches/safari-603-branch/Source/WebCore/platform/ScrollView.h	2017-05-10 16:44:56 UTC (rev 216590)
@@ -85,7 +85,7 @@
     virtual IntRect windowClipRect() const = 0;
 
     // Functions for child manipulation and inspection.
-    const HashSet<Ref<Widget>>& children() const { return m_children; }
+    const HashSet<RefPtr<Widget>>& children() const { return m_children; }
     WEBCORE_EXPORT virtual void addChild(PassRefPtr<Widget>);
     virtual void removeChild(Widget&);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to