Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.h

Issue 2729020: Show Captcha dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: remove debug line Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/existing_user_controller.h
diff --git a/chrome/browser/chromeos/login/existing_user_controller.h b/chrome/browser/chromeos/login/existing_user_controller.h
index c44376685db6500cf48d5c24494585705e449e4a..d42717c534c913fd0e7bcaed01d0d88a60611119 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.h
+++ b/chrome/browser/chromeos/login/existing_user_controller.h
@@ -11,6 +11,7 @@
#include "base/ref_counted.h"
#include "base/task.h"
#include "base/timer.h"
+#include "chrome/browser/chromeos/login/captcha_view.h"
#include "chrome/browser/chromeos/login/login_status_consumer.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/chromeos/login/user_controller.h"
@@ -41,7 +42,8 @@ class MessageBubble;
class ExistingUserController : public WmMessageListener::Observer,
public UserController::Delegate,
public LoginStatusConsumer,
- public InfoBubbleDelegate {
+ public InfoBubbleDelegate,
+ public CaptchaView::Delegate {
public:
// Initializes views for known users. |background_bounds| determines the
// bounds of background view.
@@ -84,6 +86,12 @@ class ExistingUserController : public WmMessageListener::Observer,
virtual bool CloseOnEscape() { return true; }
virtual bool FadeInOnShow() { return false; }
+ // CaptchaView::Delegate:
+ virtual void OnCaptchaEntered(const std::string& captcha);
+
+ // Clears existing captcha state;
+ void ClearCaptchaState();
+
// Show error message. |error_id| error message ID in resources.
// If |details| string is not empty, it specify additional error text
// provided by authenticator, it is not localized.
@@ -115,6 +123,12 @@ class ExistingUserController : public WmMessageListener::Observer,
// it will be deleted on bubble closing.
MessageBubble* bubble_;
+ // Token representing the specific CAPTCHA challenge.
+ std::string login_token_;
+
+ // String entered by the user as an answer to a CAPTCHA challenge.
+ std::string login_captcha_;
+
DISALLOW_COPY_AND_ASSIGN(ExistingUserController);
};
« no previous file with comments | « chrome/browser/chromeos/login/captcha_view.cc ('k') | chrome/browser/chromeos/login/existing_user_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698