Index: chrome/browser/remoting/setup_flow_login_step.h |
diff --git a/chrome/browser/remoting/setup_flow_login_step.h b/chrome/browser/remoting/setup_flow_login_step.h |
index a7d891158993cc4dc1ffcda6c9d0badb05e997e5..6a41d995ec2f6b2f52685c5588c17bbc1ca1cb6a 100644 |
--- a/chrome/browser/remoting/setup_flow_login_step.h |
+++ b/chrome/browser/remoting/setup_flow_login_step.h |
@@ -15,6 +15,7 @@ namespace remoting { |
class SetupFlowLoginStep : public SetupFlowStepBase, public GaiaAuthConsumer { |
public: |
SetupFlowLoginStep(); |
+ SetupFlowLoginStep(const string16& error_message); |
virtual ~SetupFlowLoginStep(); |
// SetupFlowStep implementation. |
@@ -36,12 +37,15 @@ class SetupFlowLoginStep : public SetupFlowStepBase, public GaiaAuthConsumer { |
private: |
void OnUserSubmittedAuth(const std::string& user, |
const std::string& password, |
- const std::string& captcha); |
+ const std::string& captcha, |
+ const std::string& access_code); |
void ShowGaiaLogin(const DictionaryValue& args); |
void ShowGaiaSuccessAndSettingUp(); |
void ShowGaiaFailed(const GoogleServiceAuthError& error); |
+ string16 error_message_; |
+ |
// Fetcher to obtain the Chromoting Directory token. |
scoped_ptr<GaiaAuthFetcher> authenticator_; |