diff options
author | sgurun@chromium.org <sgurun@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 09:41:51 +0000 |
---|---|---|
committer | sgurun@chromium.org <sgurun@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 09:41:51 +0000 |
commit | 42f1937ddc1c0fed10f29c5c07caf08883a3f699 (patch) | |
tree | e0c54292254bd22c98486fadbf09a085f5196207 /android_webview | |
parent | e7f2e7c9d9f11ad1544d55442a2ce202da9424ed (diff) | |
download | chromium_src-42f1937ddc1c0fed10f29c5c07caf08883a3f699.zip chromium_src-42f1937ddc1c0fed10f29c5c07caf08883a3f699.tar.gz chromium_src-42f1937ddc1c0fed10f29c5c07caf08883a3f699.tar.bz2 |
Restore session cookies for classic compatibility.
BUG= 9416203
Review URL: https://chromiumcodereview.appspot.com/18100006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211622 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r-- | android_webview/browser/net/aw_url_request_context_getter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/browser/net/aw_url_request_context_getter.cc b/android_webview/browser/net/aw_url_request_context_getter.cc index 4028ec7..d323f4e 100644 --- a/android_webview/browser/net/aw_url_request_context_getter.cc +++ b/android_webview/browser/net/aw_url_request_context_getter.cc @@ -88,7 +88,7 @@ void AwURLRequestContextGetter::Init() { scoped_refptr<net::CookieStore> cookie_store = content::CreatePersistentCookieStore( browser_context_->GetPath().Append(FILE_PATH_LITERAL("Cookies")), - false, + true, NULL, NULL); cookie_store->GetCookieMonster()->SetPersistSessionCookies(true); |