Bug 139409

Summary: Make deleting all cookies after a given date a little more sane
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Anders Carlsson <andersca>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Description Anders Carlsson 2014-12-08 12:14:28 PST
Make deleting all cookies after a given date a little more sane
Comment 1 Anders Carlsson 2014-12-08 12:21:10 PST
Created attachment 242838 [details]
Patch
Comment 2 Antti Koivisto 2014-12-08 12:32:22 PST
Comment on attachment 242838 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=242838&action=review

> Source/WebCore/platform/network/mac/CookieJarMac.mm:234
> +    NSDate *date = [NSDate dateWithTimeIntervalSince1970:std::chrono::duration_cast<std::chrono::duration<double>>(timePoint.time_since_epoch()).count()];

Uh maybe put that std::chrono thing to a variable.
Comment 3 Anders Carlsson 2014-12-08 12:35:51 PST
Committed r176963: <http://trac.webkit.org/changeset/176963>