| 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)
|
|
|