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

Unified Diff: chrome/browser/chromeos/login/mock_authenticator.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
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/browser/chromeos/login/user_image_downloader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/mock_authenticator.h
diff --git a/chrome/browser/chromeos/login/mock_authenticator.h b/chrome/browser/chromeos/login/mock_authenticator.h
index e5ab51f6792732964431592099aea2973f8727c3..aa06387b709c0a4d57cd770b41e5cb5f160a14d0 100644
--- a/chrome/browser/chromeos/login/mock_authenticator.h
+++ b/chrome/browser/chromeos/login/mock_authenticator.h
@@ -31,7 +31,9 @@ class MockAuthenticator : public Authenticator {
// This is called on the FILE thread now, so we need to do this.
virtual bool AuthenticateToLogin(Profile* profile,
const std::string& username,
- const std::string& password) {
+ const std::string& password,
+ const std::string& login_token,
+ const std::string& login_captcha) {
if (expected_username_ == username &&
expected_password_ == password) {
ChromeThread::PostTask(
@@ -52,7 +54,8 @@ class MockAuthenticator : public Authenticator {
virtual bool AuthenticateToUnlock(const std::string& username,
const std::string& password) {
- return AuthenticateToLogin(NULL /* not used */, username, password);
+ return AuthenticateToLogin(NULL /* not used */, username, password,
+ std::string(), std::string());
}
virtual void LoginOffTheRecord() {
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/browser/chromeos/login/user_image_downloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698