diff options
-rw-r--r-- | google_apis/gaia/gaia_auth_fetcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/google_apis/gaia/gaia_auth_fetcher.cc b/google_apis/gaia/gaia_auth_fetcher.cc index b0046d5..55a6062 100644 --- a/google_apis/gaia/gaia_auth_fetcher.cc +++ b/google_apis/gaia/gaia_auth_fetcher.cc @@ -867,10 +867,10 @@ void GaiaAuthFetcher::OnGetUserInfoFetched( const net::URLRequestStatus& status, int response_code) { if (status.is_success() && response_code == net::HTTP_OK) { - std::vector<std::pair<std::string, std::string> > tokens; + base::StringPairs tokens; UserInfoMap matches; base::SplitStringIntoKeyValuePairs(data, '=', '\n', &tokens); - std::vector<std::pair<std::string, std::string> >::iterator i; + base::StringPairs::iterator i; for (i = tokens.begin(); i != tokens.end(); ++i) { matches[i->first] = i->second; } |