⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181875 in webkit


Ignore:
Timestamp:
Mar 23, 2015, 3:31:07 PM (11 years ago)
Author:
andersca@apple.com
Message:

-[_WKWebsiteDataStore removeDataOfTypes:modifiedSince:completionHandler:] doesn't remove cookies
https://bugs.webkit.org/show_bug.cgi?id=142990
rdar://problem/20241645

Reviewed by Andreas Kling.

Use the Mac version of deleteAllCookiesModifiedSince on iOS as well.

  • platform/network/cf/CookieJarCFNet.cpp:
  • platform/network/mac/CookieJarMac.mm:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181873 r181875  
     12015-03-23  Anders Carlsson  <andersca@apple.com>
     2
     3        -[_WKWebsiteDataStore removeDataOfTypes:modifiedSince:completionHandler:] doesn't remove cookies
     4        https://bugs.webkit.org/show_bug.cgi?id=142990
     5        rdar://problem/20241645
     6
     7        Reviewed by Andreas Kling.
     8
     9        Use the Mac version of deleteAllCookiesModifiedSince on iOS as well.
     10
     11        * platform/network/cf/CookieJarCFNet.cpp:
     12        * platform/network/mac/CookieJarMac.mm:
     13
    1142015-03-23  Conrad Shultz  <conrad_shultz@apple.com>
    215
  • trunk/Source/WebCore/platform/network/cf/CookieJarCFNet.cpp

    r176963 r181875  
    240240}
    241241
     242#if PLATFORM(WIN)
    242243void deleteAllCookiesModifiedSince(const NetworkStorageSession&, std::chrono::system_clock::time_point)
    243244{
    244245}
     246#endif
    245247
    246248} // namespace WebCore
  • trunk/Source/WebCore/platform/network/mac/CookieJarMac.mm

    r176963 r181875  
    218218}
    219219
     220}
     221
     222#endif // !USE(CFNETWORK)
     223
     224namespace WebCore {
     225
    220226static NSHTTPCookieStorage *cookieStorage(const NetworkStorageSession& session)
    221227{
     
    239245
    240246}
    241 
    242 #endif // !USE(CFNETWORK)
Note: See TracChangeset for help on using the changeset viewer.