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

Unified Diff: chrome/browser/profiles/profile_impl_io_data.h

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, 5 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_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* >

Powered by Google App Engine
This is Rietveld 408576698