Title: [250622] trunk/Source/WebCore
Revision
250622
Author
timothy_hor...@apple.com
Date
2019-10-02 12:36:45 -0700 (Wed, 02 Oct 2019)

Log Message

Another build fix

* css/typedom/TypedOMCSSImageValue.cpp:
(WebCore::TypedOMCSSImageValue::TypedOMCSSImageValue):
* css/typedom/TypedOMCSSImageValue.h:
I feel like I am actively being thwarted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (250621 => 250622)


--- trunk/Source/WebCore/ChangeLog	2019-10-02 19:21:54 UTC (rev 250621)
+++ trunk/Source/WebCore/ChangeLog	2019-10-02 19:36:45 UTC (rev 250622)
@@ -2,10 +2,19 @@
 
         Another build fix
 
+        * css/typedom/TypedOMCSSImageValue.cpp:
+        (WebCore::TypedOMCSSImageValue::TypedOMCSSImageValue):
         * css/typedom/TypedOMCSSImageValue.h:
+        I feel like I am actively being thwarted.
 
 2019-10-02  Tim Horton  <timothy_hor...@apple.com>
 
+        Another build fix
+
+        * css/typedom/TypedOMCSSImageValue.h:
+
+2019-10-02  Tim Horton  <timothy_hor...@apple.com>
+
         Try to fix the Windows build
 
         * css/typedom/TypedOMCSSImageValue.cpp:

Modified: trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.cpp (250621 => 250622)


--- trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.cpp	2019-10-02 19:21:54 UTC (rev 250621)
+++ trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.cpp	2019-10-02 19:36:45 UTC (rev 250622)
@@ -40,6 +40,12 @@
 
 WTF_MAKE_ISO_ALLOCATED_IMPL(TypedOMCSSImageValue);
 
+TypedOMCSSImageValue::TypedOMCSSImageValue(CSSImageValue& cssValue, Document& document)
+    : m_cssValue(makeRef(cssValue))
+    , m_document(makeWeakPtr(document))
+{
+}
+
 Document* TypedOMCSSImageValue::document() const { return m_document.get(); }
 
 } // namespace WebCore

Modified: trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.h (250621 => 250622)


--- trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.h	2019-10-02 19:21:54 UTC (rev 250621)
+++ trunk/Source/WebCore/css/typedom/TypedOMCSSImageValue.h	2019-10-02 19:36:45 UTC (rev 250622)
@@ -50,11 +50,7 @@
     Document* document() const;
 
 private:
-    TypedOMCSSImageValue(CSSImageValue& cssValue, Document& document)
-        : m_cssValue(makeRef(cssValue))
-        , m_document(makeWeakPtr(document))
-    {
-    }
+    TypedOMCSSImageValue(CSSImageValue& cssValue, Document& document);
 
     bool isImageValue() final { return true; }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to