| Index: components/signin/core/browser/webdata/token_web_data.cc
|
| diff --git a/components/signin/core/browser/webdata/token_web_data.cc b/components/signin/core/browser/webdata/token_web_data.cc
|
| index 0c6425529c05c362a0ef9c8fa50b6138c4987401..28e768e1a2cf0c155cbed90958c22fcd747cdaad 100644
|
| --- a/components/signin/core/browser/webdata/token_web_data.cc
|
| +++ b/components/signin/core/browser/webdata/token_web_data.cc
|
| @@ -47,10 +47,10 @@ class TokenWebDataBackend
|
| }
|
|
|
| std::unique_ptr<WDTypedResult> GetAllTokens(WebDatabase* db) {
|
| - std::map<std::string, std::string> map;
|
| - TokenServiceTable::FromWebDatabase(db)->GetAllTokens(&map);
|
| - return base::MakeUnique<WDResult<std::map<std::string, std::string>>>(
|
| - TOKEN_RESULT, map);
|
| + TokenResult result;
|
| + result.db_result =
|
| + TokenServiceTable::FromWebDatabase(db)->GetAllTokens(&result.tokens);
|
| + return base::MakeUnique<WDResult<TokenResult>>(TOKEN_RESULT, result);
|
| }
|
|
|
| protected:
|
|
|