Index: chrome/browser/profile.cc |
=================================================================== |
--- chrome/browser/profile.cc (revision 26234) |
+++ chrome/browser/profile.cc (working copy) |
@@ -224,7 +224,8 @@ |
virtual ChromeAppCacheService* GetAppCacheService() { |
if (!appcache_service_.get()) { |
appcache_service_ = new ChromeAppCacheService(); |
- appcache_service_->InitializeOnUIThread(GetPath(), true); |
+ appcache_service_->InitializeOnUIThread( |
+ GetPath(), GetRequestContext(), true); |
} |
return appcache_service_.get(); |
} |
@@ -780,7 +781,8 @@ |
ChromeAppCacheService* ProfileImpl::GetAppCacheService() { |
if (!appcache_service_.get()) { |
appcache_service_ = new ChromeAppCacheService(); |
- appcache_service_->InitializeOnUIThread(GetPath(), false); |
+ appcache_service_->InitializeOnUIThread( |
+ GetPath(), GetRequestContext(), false); |
} |
return appcache_service_.get(); |
} |