Index: chrome/browser/io_thread.cc |
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc |
index b88dff81a4173d71778e476bffd55dd135a73ff4..af4638314d5caf594a42e38d32c6d9f553983766 100644 |
--- a/chrome/browser/io_thread.cc |
+++ b/chrome/browser/io_thread.cc |
@@ -53,6 +53,7 @@ |
#include "net/cert/cert_verifier.h" |
#include "net/cert/ct_known_logs.h" |
#include "net/cert/ct_verifier.h" |
+#include "net/cookies/cookie_store.h" |
#include "net/dns/host_cache.h" |
#include "net/dns/host_resolver.h" |
#include "net/dns/mapped_host_resolver.h" |
@@ -594,7 +595,8 @@ void IOThread::InitAsync() { |
globals_->proxy_script_fetcher_proxy_service.reset( |
net::ProxyService::CreateDirectWithNetLog(net_log_)); |
// In-memory cookie store. |
- globals_->system_cookie_store = content::CreateInMemoryCookieStore(NULL); |
+ globals_->system_cookie_store = |
+ content::CreateCookieStore(content::CookieStoreConfig()); |
// In-memory server bound cert store. |
globals_->system_server_bound_cert_service.reset( |
new net::ServerBoundCertService( |