diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/net/chrome_cookie_policy.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/net/chrome_cookie_policy.cc b/chrome/browser/net/chrome_cookie_policy.cc index da700e3..28c7e95 100644 --- a/chrome/browser/net/chrome_cookie_policy.cc +++ b/chrome/browser/net/chrome_cookie_policy.cc @@ -40,6 +40,8 @@ int ChromeCookiePolicy::CanGetCookies(const GURL& url, } int policy = CheckPolicy(url); + if (policy == net::OK_FOR_SESSION_ONLY) + policy = net::OK; if (policy != net::ERR_IO_PENDING) return policy; |