| Index: chromeos/login/auth/user_context.h
|
| diff --git a/chromeos/login/auth/user_context.h b/chromeos/login/auth/user_context.h
|
| index 727df7f484649b5759be9fdac81eb0bd310f0d45..4dbd71b272a698111f1a76abf808937ff33599cf 100644
|
| --- a/chromeos/login/auth/user_context.h
|
| +++ b/chromeos/login/auth/user_context.h
|
| @@ -56,6 +56,7 @@ class CHROMEOS_EXPORT UserContext {
|
| const std::string& GetPublicSessionLocale() const;
|
| const std::string& GetPublicSessionInputMethod() const;
|
| const std::string& GetDeviceId() const;
|
| + const std::string& GetGAPSCookie() const;
|
|
|
| bool HasCredentials() const;
|
|
|
| @@ -72,6 +73,7 @@ class CHROMEOS_EXPORT UserContext {
|
| void SetPublicSessionLocale(const std::string& locale);
|
| void SetPublicSessionInputMethod(const std::string& input_method);
|
| void SetDeviceId(const std::string& device_id);
|
| + void SetGAPSCookie(const std::string& gaps_cookie);
|
|
|
| void ClearSecrets();
|
|
|
| @@ -89,6 +91,7 @@ class CHROMEOS_EXPORT UserContext {
|
| std::string public_session_locale_;
|
| std::string public_session_input_method_;
|
| std::string device_id_;
|
| + std::string gaps_cookie_;
|
| };
|
|
|
| } // namespace chromeos
|
|
|