[Webkit-unassigned] [Bug 128845] Expose a way to clear cookies modified after a given date

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 17 09:27:38 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=128845





--- Comment #3 from Jessie Berlin <jberlin at webkit.org>  2014-02-17 09:24:50 PST ---
(From update of attachment 224273)
View in context: https://bugs.webkit.org/attachment.cgi?id=224273&action=review

One of the reasons the GTK and EFL builds are broken is that you added a method declaration to PlatformCookieJar.h but only added an implementation to Source/WebCore/platform/network/cf/CookieJarCFNet.cpp and Source/WebCore/platform/network/mac/CookieJarMac.mm. You also need to add a stub implementation to the soup/CookieJarSoup.cpp implementation and possibly to the curl/CookieJarCurl.cpp implementation.

> Source/WebCore/platform/network/cf/CookieJarCFNet.cpp:242
> +void deleteAllCookies(const NetworkStorageSession&)

This is one of the reasons the Windows build is broken:

     1>..\platform\network\cf\CookieJarCFNet.cpp(243): error C2084: function 'void WebCore::deleteAllCookies(const WebCore::NetworkStorageSession &)' already has a body
                 C:\cygwin\home\buildbot\WebKit\Source\WebCore\platform\network\PlatformCookieJar.h(50) : see previous definition of 'deleteAllCookies'

You probably meant

void deleteAllCookiesModifiedAfterDate(const NetworkStorageSession&, double)

instead

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list