| Index: chrome/common/net/gaia/gaia_authenticator.cc
|
| diff --git a/chrome/common/net/gaia/gaia_authenticator.cc b/chrome/common/net/gaia/gaia_authenticator.cc
|
| index 563ee3a98fd3d300429449ff22574254df5627fd..36d060e12c3f83859b613abb0cd36e7cc7531b62 100644
|
| --- a/chrome/common/net/gaia/gaia_authenticator.cc
|
| +++ b/chrome/common/net/gaia/gaia_authenticator.cc
|
| @@ -196,6 +196,13 @@ bool GaiaAuthenticator::PerformGaiaRequest(const AuthParams& params,
|
| }
|
| }
|
|
|
| +bool GaiaAuthenticator::Post(const GURL& url,
|
| + const std::string& post_body,
|
| + unsigned long* response_code,
|
| + std::string* response_body) {
|
| + return false;
|
| +}
|
| +
|
| bool GaiaAuthenticator::LookupEmail(AuthResults* results) {
|
| DCHECK_EQ(MessageLoop::current(), message_loop_);
|
| // Use the provided Gaia server, but change the path to what V1 expects.
|
| @@ -238,6 +245,11 @@ bool GaiaAuthenticator::LookupEmail(AuthResults* results) {
|
| return false;
|
| }
|
|
|
| +int GaiaAuthenticator::GetBackoffDelaySeconds(int current_backoff_delay) {
|
| + NOTREACHED();
|
| + return current_backoff_delay;
|
| +}
|
| +
|
| // We need to call this explicitly when we need to obtain a long-lived session
|
| // token.
|
| bool GaiaAuthenticator::IssueAuthToken(AuthResults* results,
|
|
|