Title: [213823] trunk/Source/WebKit/win
Revision
213823
Author
[email protected]
Date
2017-03-13 04:12:47 -0700 (Mon, 13 Mar 2017)

Log Message

Unreviewed Win build fix.
        
WebCore::CookiesStrategy::addCookie has been removed, we should also remove the override.

* WebCoreSupport/WebPlatformStrategies.cpp:
(WebPlatformStrategies::addCookie): Deleted.
(WebPlatformStrategies::addCookie): Deleted.
* WebCoreSupport/WebPlatformStrategies.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (213822 => 213823)


--- trunk/Source/WebKit/win/ChangeLog	2017-03-13 11:07:53 UTC (rev 213822)
+++ trunk/Source/WebKit/win/ChangeLog	2017-03-13 11:12:47 UTC (rev 213823)
@@ -1,3 +1,14 @@
+2017-03-13  Per Arne Vollan  <[email protected]>
+
+        Unreviewed Win build fix.
+        
+        WebCore::CookiesStrategy::addCookie has been removed, we should also remove the override.
+
+        * WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebPlatformStrategies::addCookie): Deleted.
+        (WebPlatformStrategies::addCookie): Deleted.
+        * WebCoreSupport/WebPlatformStrategies.h:
+
 2017-03-10  Brent Fulgham  <[email protected]>
 
         [Win] Re-export a few symbols for backwards compatibility

Modified: trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.cpp (213822 => 213823)


--- trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.cpp	2017-03-13 11:07:53 UTC (rev 213822)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.cpp	2017-03-13 11:12:47 UTC (rev 213823)
@@ -104,8 +104,3 @@
 {
     WebCore::deleteCookie(session, url, cookieName);
 }
-
-void WebPlatformStrategies::addCookie(const NetworkStorageSession& session, const URL& url, const Cookie& cookie)
-{
-    WebCore::addCookie(session, url, cookie);
-}

Modified: trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.h (213822 => 213823)


--- trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.h	2017-03-13 11:07:53 UTC (rev 213822)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebPlatformStrategies.h	2017-03-13 11:12:47 UTC (rev 213823)
@@ -51,7 +51,6 @@
     virtual String cookieRequestHeaderFieldValue(WebCore::SessionID, const WebCore::URL& firstParty, const WebCore::URL&);
     virtual bool getRawCookies(const WebCore::NetworkStorageSession&, const WebCore::URL& firstParty, const WebCore::URL&, Vector<WebCore::Cookie>&);
     virtual void deleteCookie(const WebCore::NetworkStorageSession&, const WebCore::URL&, const String&);
-    virtual void addCookie(const WebCore::NetworkStorageSession&, const WebCore::URL&, const WebCore::Cookie&);
 };
 
 #endif // WebPlatformStrategies_h
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to