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

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

Issue 18121007: *WIP* Store NSS slots per profile. Move keygen to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cert manager basics working Created 7 years, 2 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
« no previous file with comments | « chrome/browser/policy/profile_policy_connector.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 724a728b1493bb5ba811b9e14eb83c9f81ebb372..2b83893c1a5f0415a4f245b2c8067db9a9bb27de 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -192,6 +192,15 @@ class ProfileIOData {
}
#endif
+#if defined(OS_CHROMEOS)
+ std::string user_name() const {
+ return user_name_;
+ }
+ base::FilePath profile_path() const {
+ return profile_path_;
+ }
+#endif
+
// Initialize the member needed to track the metrics enabled state. This is
// only to be called on the UI thread.
void InitializeMetricsEnabledStateOnUIThread();
@@ -276,6 +285,7 @@ class ProfileIOData {
#if defined(OS_CHROMEOS)
scoped_ptr<policy::PolicyCertVerifier> cert_verifier;
+ std::string user_name;
#endif
// The profile this struct was populated from. It's passed as a void* to
@@ -498,6 +508,8 @@ class ProfileIOData {
http_server_properties_;
#if defined(OS_CHROMEOS)
mutable scoped_ptr<net::CertVerifier> cert_verifier_;
+ mutable std::string user_name_;
+ mutable base::FilePath profile_path_;
#endif
#if defined(ENABLE_NOTIFICATIONS)
« no previous file with comments | « chrome/browser/policy/profile_policy_connector.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698