| Index: chrome/browser/signin/token_service.cc
|
| diff --git a/chrome/browser/signin/token_service.cc b/chrome/browser/signin/token_service.cc
|
| index 0cd9c117faf282f309123c9665fe39a84aef9823..b7eff9a2ea2c24eca137c17d32c4b96e73c38c4e 100644
|
| --- a/chrome/browser/signin/token_service.cc
|
| +++ b/chrome/browser/signin/token_service.cc
|
| @@ -100,10 +100,6 @@ void TokenService::Initialize(const char* const source,
|
| }
|
| }
|
|
|
| -// TODO(petewil) We should refactor the token_service so it does not both
|
| -// store tokens and fetch them. Move the key-value storage out of
|
| -// token_service, and leave the token fetching in token_service.
|
| -
|
| void TokenService::AddAuthTokenManually(const std::string& service,
|
| const std::string& auth_token) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| @@ -405,10 +401,6 @@ void TokenService::LoadTokensIntoMemory(
|
| }
|
| LoadSingleTokenIntoMemory(db_tokens, in_memory_tokens,
|
| GaiaConstants::kGaiaOAuth2LoginRefreshToken);
|
| - // TODO(petewil): Remove next line when we refactor key-value
|
| - // storage out of token_service - http://crbug.com/177125.
|
| - LoadSingleTokenIntoMemory(db_tokens, in_memory_tokens,
|
| - GaiaConstants::kObfuscatedGaiaId);
|
|
|
| if (credentials_.lsid.empty() && credentials_.sid.empty()) {
|
| // Look for GAIA SID and LSID tokens. If we have both, and the current
|
|
|