Title: [210781] trunk/Source/WebCore
Revision
210781
Author
mcatanz...@igalia.com
Date
2017-01-15 13:01:26 -0800 (Sun, 15 Jan 2017)

Log Message

[SOUP] SoupNetworkSession constructor should be explicit
https://bugs.webkit.org/show_bug.cgi?id=167069

Reviewed by Darin Adler.

* platform/network/soup/SoupNetworkSession.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210780 => 210781)


--- trunk/Source/WebCore/ChangeLog	2017-01-15 20:05:20 UTC (rev 210780)
+++ trunk/Source/WebCore/ChangeLog	2017-01-15 21:01:26 UTC (rev 210781)
@@ -1,3 +1,12 @@
+2017-01-15  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        [SOUP] SoupNetworkSession constructor should be explicit
+        https://bugs.webkit.org/show_bug.cgi?id=167069
+
+        Reviewed by Darin Adler.
+
+        * platform/network/soup/SoupNetworkSession.h:
+
 2017-01-15  Sam Weinig  <s...@webkit.org>
 
         [WebIDL] Remove custom bindings for HTMLInputElement, HTMLFrameElement, HTMLMediaElement and HTMLOptionsCollection

Modified: trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h (210780 => 210781)


--- trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h	2017-01-15 20:05:20 UTC (rev 210780)
+++ trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h	2017-01-15 21:01:26 UTC (rev 210781)
@@ -46,7 +46,7 @@
 class SoupNetworkSession {
     WTF_MAKE_NONCOPYABLE(SoupNetworkSession); WTF_MAKE_FAST_ALLOCATED;
 public:
-    SoupNetworkSession(SoupCookieJar* = nullptr);
+    explicit SoupNetworkSession(SoupCookieJar* = nullptr);
     ~SoupNetworkSession();
 
     SoupSession* soupSession() const { return m_soupSession.get(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to