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

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

Issue 1232553003: Add new certificateProvider extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 3 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_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index 7870c4b351d54f55ccb4daa7b2bb7c37b1200773..d90f71e094388fea11ac80f2cf568a6234d3df2c 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -40,6 +40,10 @@ class MediaDeviceIDSalt;
class ProtocolHandlerRegistry;
class SupervisedUserURLFilter;
+namespace chromeos {
+class CertificateProvider;
+}
+
namespace chrome_browser_net {
class ResourcePrefetchPredictorObserver;
}
@@ -313,6 +317,7 @@ class ProfileIOData {
#if defined(OS_CHROMEOS)
std::string username_hash;
bool use_system_key_slot;
+ scoped_ptr<chromeos::CertificateProvider> certificate_provider;
#endif
// The profile this struct was populated from. It's passed as a void* to
@@ -550,6 +555,7 @@ class ProfileIOData {
mutable policy::PolicyCertVerifier* policy_cert_verifier_;
mutable std::string username_hash_;
mutable bool use_system_key_slot_;
+ mutable scoped_ptr<chromeos::CertificateProvider> certificate_provider_;
#endif
mutable scoped_ptr<net::TransportSecurityPersister>

Powered by Google App Engine
This is Rietveld 408576698