| Index: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| index 8a02b6179a80348281d1b73ca85f41c1a14a9b87..a642ac383c662f2f1d659bb10e03c1b1fcf48fc3 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| +++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| @@ -62,6 +62,7 @@ class LoginDisplayWebUIHandler {
|
| // Show sign-in screen for the given credentials.
|
| virtual void ShowSigninScreenForCreds(const std::string& username,
|
| const std::string& password) = 0;
|
| + virtual void SetGaiaOriginForTesting(const std::string& arg) = 0;
|
| protected:
|
| virtual ~LoginDisplayWebUIHandler() {}
|
| };
|
| @@ -249,6 +250,7 @@ class SigninScreenHandler
|
| virtual void ShowErrorScreen(LoginDisplay::SigninError error_id) OVERRIDE;
|
| virtual void ShowSigninScreenForCreds(const std::string& username,
|
| const std::string& password) OVERRIDE;
|
| + virtual void SetGaiaOriginForTesting(const std::string& arg) OVERRIDE;
|
|
|
| // BrowsingDataRemover::Observer overrides.
|
| virtual void OnBrowsingDataRemoverDone() OVERRIDE;
|
| @@ -435,6 +437,9 @@ class SigninScreenHandler
|
| // NOTIFICATION_AUTH_CANCELLED.
|
| bool has_pending_auth_ui_;
|
|
|
| + // Testing helper, specifies new value for gaia url.
|
| + std::string gaia_origin_for_test_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(SigninScreenHandler);
|
| };
|
|
|
|
|