Index: chrome/browser/profiles/profile_impl.cc |
=================================================================== |
--- chrome/browser/profiles/profile_impl.cc (revision 94628) |
+++ chrome/browser/profiles/profile_impl.cc (working copy) |
@@ -418,6 +418,9 @@ |
FilePath cookie_path = GetPath(); |
cookie_path = cookie_path.Append(chrome::kCookieFilename); |
+ FilePath origin_bound_cert_path = GetPath(); |
+ origin_bound_cert_path = origin_bound_cert_path.Append( |
+ chrome::kOBCertFilename); |
FilePath cache_path = base_cache_path_; |
int cache_max_size; |
GetCacheParameters(kNormalContext, &cache_path, &cache_max_size); |
@@ -429,15 +432,19 @@ |
media_cache_path = GetMediaCachePath(media_cache_path); |
FilePath extensions_cookie_path = GetPath(); |
- extensions_cookie_path = |
- extensions_cookie_path.Append(chrome::kExtensionsCookieFilename); |
+ extensions_cookie_path = extensions_cookie_path.Append( |
+ chrome::kExtensionsCookieFilename); |
+ FilePath extensions_origin_bound_cert_path = GetPath(); |
+ extensions_origin_bound_cert_path = extensions_origin_bound_cert_path.Append( |
+ chrome::kExtensionsOBCertFilename); |
FilePath app_path = GetPath().Append(chrome::kIsolatedAppStateDirname); |
// Make sure we initialize the ProfileIOData after everything else has been |
// initialized that we might be reading from the IO thread. |
- io_data_.Init(cookie_path, cache_path, cache_max_size, |
- media_cache_path, media_cache_max_size, extensions_cookie_path, |
+ io_data_.Init(cookie_path, origin_bound_cert_path, cache_path, |
+ cache_max_size, media_cache_path, media_cache_max_size, |
+ extensions_cookie_path, extensions_origin_bound_cert_path, |
app_path); |
// Creation has been finished. |