| Index: chrome/browser/profiles/profile.cc
|
| diff --git a/chrome/browser/profiles/profile.cc b/chrome/browser/profiles/profile.cc
|
| index 4f882cb7a82a8bde4d96b1f04cc5fae1b4370e11..fbb0f4b5b8baa32e6fe86407aa56bf9c9528e38d 100644
|
| --- a/chrome/browser/profiles/profile.cc
|
| +++ b/chrome/browser/profiles/profile.cc
|
| @@ -565,11 +565,7 @@ class OffTheRecordProfileImpl : public Profile,
|
| }
|
|
|
| virtual WebKitContext* GetWebKitContext() {
|
| - if (!webkit_context_.get()) {
|
| - webkit_context_ = new WebKitContext(
|
| - IsOffTheRecord(), GetPath(), GetExtensionSpecialStoragePolicy(),
|
| - false);
|
| - }
|
| + CreateQuotaManagerAndClients();
|
| return webkit_context_.get();
|
| }
|
|
|
| @@ -694,6 +690,7 @@ class OffTheRecordProfileImpl : public Profile,
|
| if (quota_manager_.get()) {
|
| DCHECK(file_system_context_.get());
|
| DCHECK(db_tracker_.get());
|
| + DCHECK(webkit_context_.get());
|
| return;
|
| }
|
|
|
| @@ -717,6 +714,10 @@ class OffTheRecordProfileImpl : public Profile,
|
| GetPath(), IsOffTheRecord(), GetExtensionSpecialStoragePolicy(),
|
| quota_manager_->proxy(),
|
| BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE));
|
| + webkit_context_ = new WebKitContext(
|
| + IsOffTheRecord(), GetPath(), GetExtensionSpecialStoragePolicy(),
|
| + false, quota_manager_->proxy(),
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::WEBKIT));
|
| appcache_service_ = new ChromeAppCacheService(quota_manager_->proxy());
|
| BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
|
|