Index: chrome/browser/safe_browsing/safe_browsing_service.cc |
diff --git a/chrome/browser/safe_browsing/safe_browsing_service.cc b/chrome/browser/safe_browsing/safe_browsing_service.cc |
index d076309bb7fe8ae2550e5cf39325cad8bad7748a..1efca62ef6b6d660e68c247e4ece7aea40f1a20b 100644 |
--- a/chrome/browser/safe_browsing/safe_browsing_service.cc |
+++ b/chrome/browser/safe_browsing/safe_browsing_service.cc |
@@ -306,12 +306,12 @@ void SafeBrowsingService::InitURLRequestContextOnIOThread( |
DCHECK(!url_request_context_.get()); |
scoped_refptr<net::CookieStore> cookie_store( |
- content::CreatePersistentCookieStore( |
- CookieFilePath(), |
- false, |
- NULL, |
- NULL, |
- scoped_ptr<content::CookieCryptoDelegate>())); |
+ content::CreateCookieStore( |
+ content::CookieStoreConfig( |
+ CookieFilePath(), |
+ content::CookieStoreConfig::EPHEMERAL_SESSION_COOKIES, |
+ NULL, |
+ NULL))); |
url_request_context_.reset(new net::URLRequestContext); |
// |system_url_request_context_getter| may be NULL during tests. |