Bug 139409 - Make deleting all cookies after a given date a little more sane
Summary: Make deleting all cookies after a given date a little more sane
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Anders Carlsson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-08 12:14 PST by Anders Carlsson
Modified: 2014-12-08 12:35 PST (History)
0 users

See Also:


Attachments
Patch (17.97 KB, patch)
2014-12-08 12:21 PST, Anders Carlsson
koivisto: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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>