Chromium Code Reviews| Index: google_apis/gcm/engine/gcm_store.h |
| diff --git a/google_apis/gcm/engine/gcm_store.h b/google_apis/gcm/engine/gcm_store.h |
| index 2b35549d92f6eef0adee9d9c1f29995b7cb6636d..7624d58689eff26694a10870929d16ac85efe88c 100644 |
| --- a/google_apis/gcm/engine/gcm_store.h |
| +++ b/google_apis/gcm/engine/gcm_store.h |
| @@ -35,7 +35,7 @@ class GCM_EXPORT GCMStore { |
| OutgoingMessageMap; |
| // Map of account id to account info for account mappings. |
|
fgorski
2014/09/24 20:02:30
Fix documentation
fgorski
2014/09/24 22:25:40
Done.
|
| - typedef std::map<std::string, AccountMapping> AccountMappingMap; |
| + typedef std::vector<AccountMapping> AccountMappings; |
| // Container for Load(..) results. |
| struct GCM_EXPORT LoadResult { |
| @@ -54,7 +54,7 @@ class GCM_EXPORT GCMStore { |
| std::string gservices_digest; |
| base::Time last_checkin_time; |
| std::set<std::string> last_checkin_accounts; |
| - AccountMappingMap account_mappings; |
| + AccountMappings account_mappings; |
| }; |
| typedef std::vector<std::string> PersistentIdList; |