Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5625)

Unified Diff: chrome/browser/profiles/profile_impl.cc

Issue 7493025: Instantiate OriginBoundCertService in relevant places and do plumbing to pass it down to HttpNetw... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
@@ -436,9 +439,9 @@
// 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,
- app_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, app_path);
// Creation has been finished.
if (delegate_)

Powered by Google App Engine
This is Rietveld 408576698