Index: chrome/browser/profiles/profile_impl_io_data.h |
=================================================================== |
--- chrome/browser/profiles/profile_impl_io_data.h (revision 94628) |
+++ chrome/browser/profiles/profile_impl_io_data.h (working copy) |
@@ -30,11 +30,13 @@ |
// Init() must be called before ~Handle(). It records all the necessary |
// parameters needed to construct a ChromeURLRequestContextGetter. |
void Init(const FilePath& cookie_path, |
+ const FilePath& origin_bound_cert_path, |
const FilePath& cache_path, |
int cache_max_size, |
const FilePath& media_cache_path, |
int media_cache_max_size, |
const FilePath& extensions_cookie_path, |
+ const FilePath& extensions_origin_bound_cert_path, |
const FilePath& app_path); |
base::Callback<ChromeURLDataManagerBackend*(void)> |
@@ -93,11 +95,13 @@ |
// All of these parameters are intended to be read on the IO thread. |
FilePath cookie_path; |
+ FilePath origin_bound_cert_path; |
FilePath cache_path; |
int cache_max_size; |
FilePath media_cache_path; |
int media_cache_max_size; |
FilePath extensions_cookie_path; |
+ FilePath extensions_origin_bound_cert_path; |
}; |
typedef base::hash_map<std::string, net::HttpTransactionFactory* > |