Index: content/shell/shell_browser_context.cc |
diff --git a/content/shell/shell_browser_context.cc b/content/shell/shell_browser_context.cc |
index 1c8935507bf29c49f625826362488fd28e4268a1..9c8f33433f102e1a5ad3a4fc4776d3c6a5ec9ba2 100644 |
--- a/content/shell/shell_browser_context.cc |
+++ b/content/shell/shell_browser_context.cc |
@@ -12,6 +12,7 @@ |
#include "base/path_service.h" |
#include "base/threading/thread.h" |
#include "content/public/browser/browser_thread.h" |
+#include "content/public/browser/cookie_store_factory.h" |
#include "content/public/browser/resource_context.h" |
#include "content/public/browser/storage_partition.h" |
#include "content/public/common/content_switches.h" |
@@ -118,6 +119,10 @@ bool ShellBrowserContext::IsOffTheRecord() const { |
return off_the_record_; |
} |
+CookieStoreConfig ShellBrowserContext::GetCookieStoreConfig() { |
+ return CookieStoreConfig::InMemory(); |
+} |
+ |
DownloadManagerDelegate* ShellBrowserContext::GetDownloadManagerDelegate() { |
DownloadManager* manager = BrowserContext::GetDownloadManager(this); |