| Index: components/user_manager/user.h
|
| diff --git a/components/user_manager/user.h b/components/user_manager/user.h
|
| index d961acf316a53428c1a40815dacb8dde0ab569cd..a0b2c2742a2f2d806843ea92969d6f561a748d91 100644
|
| --- a/components/user_manager/user.h
|
| +++ b/components/user_manager/user.h
|
| @@ -165,9 +165,6 @@
|
| // True if the user Profile is created.
|
| bool is_profile_created() const { return profile_is_created_; }
|
|
|
| - // True if the user is affiliated to the device.
|
| - bool is_affiliated() const { return is_affiliated_; }
|
| -
|
| protected:
|
| friend class UserManagerBase;
|
| friend class chromeos::ChromeUserManagerImpl;
|
| @@ -245,10 +242,6 @@
|
|
|
| // True if user has google account (not a guest or managed user).
|
| bool has_gaia_account() const;
|
| -
|
| - void set_affiliation(bool is_affiliated) {
|
| - is_affiliated_ = is_affiliated;
|
| - }
|
|
|
| private:
|
| std::string email_;
|
| @@ -292,9 +285,6 @@
|
| // True if user Profile is created
|
| bool profile_is_created_;
|
|
|
| - // True if the user is affiliated to the device.
|
| - bool is_affiliated_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(User);
|
| };
|
|
|
|
|