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

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

Issue 5641001: [cros] Fetch cookies after online authentication is successful. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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/mock_authenticator.h
diff --git a/chrome/browser/chromeos/login/mock_authenticator.h b/chrome/browser/chromeos/login/mock_authenticator.h
index 92db635b6906c021ad989f23f12400aa8d8c481c..f5f688140d91b2d88d94976a50c02700aeed6969 100644
--- a/chrome/browser/chromeos/login/mock_authenticator.h
+++ b/chrome/browser/chromeos/login/mock_authenticator.h
@@ -112,7 +112,8 @@ class MockLoginUtils : public LoginUtils {
virtual void CompleteLogin(const std::string& username,
const std::string& password,
- const GaiaAuthConsumer::ClientLoginResult& res) {
+ const GaiaAuthConsumer::ClientLoginResult& res,
+ bool pending_requests) {
EXPECT_EQ(expected_username_, username);
EXPECT_EQ(expected_password_, password);
}
@@ -135,10 +136,6 @@ class MockLoginUtils : public LoginUtils {
return true;
}
- virtual const std::string& GetAuthToken() const {
- return auth_token_;
- }
-
virtual void PrewarmAuthentication() {
}

Powered by Google App Engine
This is Rietveld 408576698