Skip to content

Commit

Permalink
Merge pull request #295 from brock8503/master
Browse files Browse the repository at this point in the history
Adding cookie expiration granularity to setcookies.
  • Loading branch information
perlun committed Mar 28, 2014
2 parents 82b734d + 53ab3cc commit 0f9faaf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CefSharp.Core/Cef.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ namespace CefSharp
cookie.expires.year = expires.Year;
cookie.expires.month = expires.Month;
cookie.expires.day_of_month = expires.Day;
cookie.expires.hour = expires.Hour;
cookie.expires.minute = expires.Minute;
cookie.expires.second = expires.Second;
cookie.expires.millisecond = expires.Millisecond;

if (CefCurrentlyOn(TID_IO))
{
Expand Down

0 comments on commit 0f9faaf

Please sign in to comment.