Title: [259179] trunk/Source/WebCore
Revision
259179
Author
[email protected]
Date
2020-03-29 02:58:08 -0700 (Sun, 29 Mar 2020)

Log Message

Windows build fix: Web Inspector: support editing cookie key/values from inspector
https://bugs.webkit.org/show_bug.cgi?id=31157#c15
<rdar://problem/19281523>

* platform/network/cf/NetworkStorageSessionCFNetWin.cpp:
(WebCore::NetworkStorageSession::setCookie):
- Add placeholder to fix build after r259173.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (259178 => 259179)


--- trunk/Source/WebCore/ChangeLog	2020-03-29 09:08:26 UTC (rev 259178)
+++ trunk/Source/WebCore/ChangeLog	2020-03-29 09:58:08 UTC (rev 259179)
@@ -1,3 +1,13 @@
+2020-03-29  David Kilzer  <[email protected]>
+
+        Windows build fix: Web Inspector: support editing cookie key/values from inspector
+        https://bugs.webkit.org/show_bug.cgi?id=31157#c15
+        <rdar://problem/19281523>
+
+        * platform/network/cf/NetworkStorageSessionCFNetWin.cpp:
+        (WebCore::NetworkStorageSession::setCookie):
+        - Add placeholder to fix build after r259173.
+
 2020-03-28  Devin Rousso  <[email protected]>
 
         Web Inspector: support editing cookie key/values from inspector

Modified: trunk/Source/WebCore/platform/network/cf/NetworkStorageSessionCFNetWin.cpp (259178 => 259179)


--- trunk/Source/WebCore/platform/network/cf/NetworkStorageSessionCFNetWin.cpp	2020-03-29 09:08:26 UTC (rev 259178)
+++ trunk/Source/WebCore/platform/network/cf/NetworkStorageSessionCFNetWin.cpp	2020-03-29 09:58:08 UTC (rev 259179)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2018 Apple Inc. All rights reserved.
+ * Copyright (C) 2018=2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -86,9 +86,16 @@
     return storageSession;
 }
 
+void NetworkStorageSession::setCookie(const Cookie&)
+{
+    // FIXME: Implement this. <https://webkit.org/b/156298>
+    notImplemented();
+}
+
 void NetworkStorageSession::setCookies(const Vector<Cookie>&, const URL&, const URL&)
 {
     // FIXME: Implement this. <https://webkit.org/b/156298>
+    notImplemented();
 }
 
 static const CFStringRef s_setCookieKeyCF = CFSTR("Set-Cookie");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to