| 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 ab375a618403eb30c6da07369c99f9638bdd3dce..193a90771e8e88a7bf6e3e972eb77534156e3134 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| +++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h
|
| @@ -139,6 +139,9 @@ class SigninScreenHandler : public BaseScreenHandler,
|
| // Shows signin screen after dns cache and cookie cleanup operations finish.
|
| void ShowSigninScreenIfReady();
|
|
|
| + // Sets extension's URL to be used for the authentication process.
|
| + void SetExtensionUrl(bool force);
|
| +
|
| // Handles confirmation message of user authentication that was performed by
|
| // the authentication extension.
|
| void HandleCompleteLogin(const base::ListValue* args);
|
| @@ -174,6 +177,9 @@ class SigninScreenHandler : public BaseScreenHandler,
|
| // Handle 'createAccount' request.
|
| void HandleCreateAccount(const base::ListValue* args);
|
|
|
| + // Handle 'accountPickerReady' request.
|
| + void HandleAccountPickerReady(const base::ListValue* args);
|
| +
|
| // Handle 'loginWebuiReady' request.
|
| void HandleLoginWebuiReady(const base::ListValue* args);
|
|
|
| @@ -205,6 +211,12 @@ class SigninScreenHandler : public BaseScreenHandler,
|
| // Keeps whether screen should be shown for OOBE.
|
| bool oobe_ui_;
|
|
|
| + // Whether handler is waiting for WebUI becomes ready.
|
| + bool is_waiting_for_webui_ready_;
|
| +
|
| + // Whether it is the first attempt to load the gaia extension.
|
| + bool is_first_attempt_;
|
| +
|
| // True if dns cache cleanup is done.
|
| bool dns_cleared_;
|
|
|
| @@ -214,9 +226,6 @@ class SigninScreenHandler : public BaseScreenHandler,
|
| // True if cookie jar cleanup is done.
|
| bool cookies_cleared_;
|
|
|
| - // True if new user sign in flow is driven by the extension.
|
| - bool extension_driven_;
|
| -
|
| // Help application used for help dialogs.
|
| scoped_refptr<HelpAppLauncher> help_app_;
|
|
|
|
|