Title: [283990] trunk/Source/WTF
Revision
283990
Author
ross.kirsl...@sony.com
Date
2021-10-12 10:26:52 -0700 (Tue, 12 Oct 2021)

Log Message

Unreviewed WinCairo build fix for r283943.

* wtf/JSONValues.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (283989 => 283990)


--- trunk/Source/WTF/ChangeLog	2021-10-12 16:47:11 UTC (rev 283989)
+++ trunk/Source/WTF/ChangeLog	2021-10-12 17:26:52 UTC (rev 283990)
@@ -1,3 +1,9 @@
+2021-10-12  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Unreviewed WinCairo build fix for r283943.
+
+        * wtf/JSONValues.h:
+
 2021-10-12  Alex Christensen  <achristen...@webkit.org>
 
         Remove non-HAVE(CFNETWORK_NSURLSESSION_STRICTRUSTEVALUATE) code

Modified: trunk/Source/WTF/wtf/JSONValues.h (283989 => 283990)


--- trunk/Source/WTF/wtf/JSONValues.h	2021-10-12 16:47:11 UTC (rev 283989)
+++ trunk/Source/WTF/wtf/JSONValues.h	2021-10-12 17:26:52 UTC (rev 283990)
@@ -209,10 +209,10 @@
 
     // FIXME: <http://webkit.org/b/179847> remove these functions when legacy InspectorObject symbols are no longer needed.
     bool getBoolean(const String& name, bool& output) const;
-    bool getString(const String& name, String& output) const;
+    WTF_EXPORT_PRIVATE bool getString(const String& name, String& output) const;
     bool getObject(const String& name, RefPtr<Object>& output) const;
     bool getArray(const String& name, RefPtr<Array>& output) const;
-    bool getValue(const String& name, RefPtr<Value>& output) const;
+    WTF_EXPORT_PRIVATE bool getValue(const String& name, RefPtr<Value>& output) const;
 
 protected:
     ObjectBase();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to