| Index: chrome/browser/net/chrome_cookie_policy.cc
|
| diff --git a/chrome/browser/net/chrome_cookie_policy.cc b/chrome/browser/net/chrome_cookie_policy.cc
|
| index a3d583aac041f9a1ec6eaf9a65c288bc7ee621e4..552fec79e092748c875647f228f9cb58834ba28d 100644
|
| --- a/chrome/browser/net/chrome_cookie_policy.cc
|
| +++ b/chrome/browser/net/chrome_cookie_policy.cc
|
| @@ -144,6 +144,8 @@ int ChromeCookiePolicy::CheckPolicy(const GURL& url) const {
|
| return net::ERR_ACCESS_DENIED;
|
| if (setting == CONTENT_SETTING_ALLOW)
|
| return net::OK;
|
| + if (setting == CONTENT_SETTING_SESSION_ONLY)
|
| + return net::OK_FOR_SESSION_ONLY;
|
| return net::ERR_IO_PENDING; // Need to prompt.
|
| }
|
|
|
|
|