Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index 147869339b1d960142141db32f203ca49699b26a..6135d6fbf214bcf596f56c11c6d0795beaa29437 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -564,9 +564,9 @@ void ProfileImpl::DoFinalInit() { |
base::FilePath cookie_path = GetPath(); |
cookie_path = cookie_path.Append(chrome::kCookieFilename); |
- base::FilePath server_bound_cert_path = GetPath(); |
- server_bound_cert_path = |
- server_bound_cert_path.Append(chrome::kOBCertFilename); |
+ base::FilePath channel_id_path = GetPath(); |
+ channel_id_path = |
+ channel_id_path.Append(chrome::kOBCertFilename); |
wtc
2014/07/01 19:50:51
1. This should fit on the previous line now.
2. R
Ryan Hamilton
2014/07/21 19:12:07
Done.
|
base::FilePath cache_path = base_cache_path_; |
int cache_max_size; |
GetCacheParameters(false, &cache_path, &cache_max_size); |
@@ -605,7 +605,7 @@ void ProfileImpl::DoFinalInit() { |
// 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, server_bound_cert_path, cache_path, |
+ io_data_.Init(cookie_path, channel_id_path, cache_path, |
cache_max_size, media_cache_path, media_cache_max_size, |
extensions_cookie_path, GetPath(), infinite_cache_path, |
predictor_, session_cookie_mode, GetSpecialStoragePolicy(), |