Change session cookie mode
authorMarcin Kędzierski <m.kedzierski@samsung.com>
Wed, 9 Sep 2015 13:27:12 +0000 (15:27 +0200)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 07:55:23 +0000 (07:55 +0000)
Using RESTORED_SESSION_COOKIES mode suits better WRT cases.

Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=14212

Original beta/m42 patch:
http://165.213.202.130/gerrit/#/c/86852/

Reviewed by: a.renevier, a1.gomes, d.waslicki, m.roj, sns.park

Change-Id: I1182100761c23b802e91921a4e4125d64b57fbec
Signed-off-by: Marcin Kędzierski <m.kedzierski@samsung.com>
tizen_src/ewk/efl_integration/url_request_context_getter_efl.cc

index 8ca40170d690cc1f7d0b99d0381b9e82b4dcabe7..a21e9f99bcdb13ee846383d55ead4ceb6907c469 100644 (file)
@@ -316,7 +316,7 @@ void URLRequestContextGetterEfl::CreatePersistentCookieStore(const base::FilePat
 
   CookieStoreConfig config(
       cookie_store_path_.Append(FILE_PATH_LITERAL("Cookies")),
-      CookieStoreConfig::PERSISTANT_SESSION_COOKIES,
+      CookieStoreConfig::RESTORED_SESSION_COOKIES,
       NULL,
       NULL);
   cookie_store_= CreateCookieStore(config);