Title: [207680] trunk/Source/WebCore
Revision
207680
Author
wenson_hs...@apple.com
Date
2016-10-21 10:08:19 -0700 (Fri, 21 Oct 2016)

Log Message

Fix minor style issue in the signature of StaticRange::create
https://bugs.webkit.org/show_bug.cgi?id=163786
<rdar://problem/28853079>

Reviewed by Alex Christensen.

Change `Ref<WebCore::Node> &&` to `Ref<Node>&&`.

* dom/StaticRange.cpp:
(WebCore::StaticRange::create):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207679 => 207680)


--- trunk/Source/WebCore/ChangeLog	2016-10-21 17:03:10 UTC (rev 207679)
+++ trunk/Source/WebCore/ChangeLog	2016-10-21 17:08:19 UTC (rev 207680)
@@ -1,3 +1,16 @@
+2016-10-21  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Fix minor style issue in the signature of StaticRange::create
+        https://bugs.webkit.org/show_bug.cgi?id=163786
+        <rdar://problem/28853079>
+
+        Reviewed by Alex Christensen.
+
+        Change `Ref<WebCore::Node> &&` to `Ref<Node>&&`.
+
+        * dom/StaticRange.cpp:
+        (WebCore::StaticRange::create):
+
 2016-10-21  Dave Hyatt  <hy...@apple.com>
 
         [CSS Parser] Add support for -webkit-line-box-contain

Modified: trunk/Source/WebCore/dom/StaticRange.cpp (207679 => 207680)


--- trunk/Source/WebCore/dom/StaticRange.cpp	2016-10-21 17:03:10 UTC (rev 207679)
+++ trunk/Source/WebCore/dom/StaticRange.cpp	2016-10-21 17:08:19 UTC (rev 207680)
@@ -39,7 +39,7 @@
 {
 }
 
-Ref<StaticRange> StaticRange::create(Ref<WebCore::Node> &&startContainer, unsigned startOffset, Ref<WebCore::Node> &&endContainer, unsigned endOffset)
+Ref<StaticRange> StaticRange::create(Ref<Node>&& startContainer, unsigned startOffset, Ref<Node>&& endContainer, unsigned endOffset)
 {
     return adoptRef(*new StaticRange(WTFMove(startContainer), startOffset, WTFMove(endContainer), endOffset));
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to