| Index: google_apis/gcm/engine/checkin_request.h
|
| diff --git a/google_apis/gcm/engine/checkin_request.h b/google_apis/gcm/engine/checkin_request.h
|
| index ae4a7d438976bd255d523d88dfd0aaf33a8b34b1..c48f3c96ec26e0220a8e3498394d65255524932d 100644
|
| --- a/google_apis/gcm/engine/checkin_request.h
|
| +++ b/google_apis/gcm/engine/checkin_request.h
|
| @@ -41,6 +41,7 @@ class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate {
|
| struct GCM_EXPORT RequestInfo {
|
| RequestInfo(uint64 android_id,
|
| uint64 security_token,
|
| + const std::map<std::string, std::string>& account_tokens,
|
| const std::string& settings_digest,
|
| const checkin_proto::ChromeBuildProto& chrome_build_proto);
|
| ~RequestInfo();
|
| @@ -49,6 +50,8 @@ class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate {
|
| uint64 android_id;
|
| // Security token of the device.
|
| uint64 security_token;
|
| + // Map of account OAuth2 tokens keyed by emails.
|
| + std::map<std::string, std::string> account_tokens;
|
| // Digest of GServices settings on the device.
|
| std::string settings_digest;
|
| // Information of the Chrome build of this device.
|
|
|