| Index: chrome/browser/chromeos/login/user.h
|
| diff --git a/chrome/browser/chromeos/login/user.h b/chrome/browser/chromeos/login/user.h
|
| index 5c8168a8458f664015e0f16203d1f3cfc06b228c..c61c0bb8f6a2c8e02426e7e10a33862e84230c6d 100644
|
| --- a/chrome/browser/chromeos/login/user.h
|
| +++ b/chrome/browser/chromeos/login/user.h
|
| @@ -171,6 +171,11 @@ class User {
|
| // True if current user is active within the current session.
|
| virtual bool is_active() const;
|
|
|
| + // True if the user Profile is created.
|
| + bool is_profile_created() const {
|
| + return profile_is_created_;
|
| + }
|
| +
|
| protected:
|
| friend class SupervisedUserManagerImpl;
|
| friend class UserManagerImpl;
|
| @@ -190,10 +195,6 @@ class User {
|
| explicit User(const std::string& email);
|
| virtual ~User();
|
|
|
| - bool is_profile_created() const {
|
| - return profile_is_created_;
|
| - }
|
| -
|
| const std::string* GetAccountLocale() const {
|
| return account_locale_.get();
|
| }
|
|
|