| 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 ede7ffde417285a4458a49a83bd46d81e2e955c4..f3a8cc1f3ac089d35226741939ba1d80269fecf4 100644
|
| --- a/google_apis/gcm/engine/checkin_request.h
|
| +++ b/google_apis/gcm/engine/checkin_request.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_
|
| #define GOOGLE_APIS_GCM_ENGINE_CHECKIN_REQUEST_H_
|
|
|
| +#include <string>
|
| +#include <vector>
|
| +
|
| #include "base/basictypes.h"
|
| #include "base/callback.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -35,6 +38,7 @@ class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate {
|
| const checkin_proto::ChromeBuildProto& chrome_build_proto,
|
| uint64 android_id,
|
| uint64 security_token,
|
| + const std::vector<std::string>& account_ids,
|
| net::URLRequestContextGetter* request_context_getter);
|
| virtual ~CheckinRequest();
|
|
|
| @@ -56,6 +60,7 @@ class GCM_EXPORT CheckinRequest : public net::URLFetcherDelegate {
|
| checkin_proto::ChromeBuildProto chrome_build_proto_;
|
| uint64 android_id_;
|
| uint64 security_token_;
|
| + std::vector<std::string> account_ids_;
|
|
|
| base::WeakPtrFactory<CheckinRequest> weak_ptr_factory_;
|
|
|
|
|