| Index: components/user_manager/user_manager_base.h
|
| diff --git a/components/user_manager/user_manager_base.h b/components/user_manager/user_manager_base.h
|
| index aa81f1a782aab75550ac0c08e6583409af4769cc..a89dcc1c81420dc0cb38b7787fa4b178bee5f9ba 100644
|
| --- a/components/user_manager/user_manager_base.h
|
| +++ b/components/user_manager/user_manager_base.h
|
| @@ -286,10 +286,10 @@ class USER_MANAGER_EXPORT UserManagerBase : public UserManager {
|
| virtual bool GetEphemeralUsersEnabled() const;
|
| virtual void SetEphemeralUsersEnabled(bool enabled);
|
|
|
| - virtual void SetOwnerEmail(std::string owner_user_id);
|
| + virtual void SetOwnerEmail(const std::string& owner_user_id);
|
|
|
| virtual const std::string& GetPendingUserSwitchID() const;
|
| - virtual void SetPendingUserSwitchID(std::string user_id);
|
| + virtual void SetPendingUserSwitchID(const std::string& user_id);
|
|
|
| // The logged-in user that is currently active in current session.
|
| // NULL until a user has logged in, then points to one
|
|
|