Chromium Code Reviews| Index: google_apis/gcm/engine/checkin_request.cc |
| diff --git a/google_apis/gcm/engine/checkin_request.cc b/google_apis/gcm/engine/checkin_request.cc |
| index e7490e5b47a9189dbd0d41c2f40d3cec93871f72..a5558471772a4043bbc0a5753d3d685678e0a6a1 100644 |
| --- a/google_apis/gcm/engine/checkin_request.cc |
| +++ b/google_apis/gcm/engine/checkin_request.cc |
| @@ -81,12 +81,10 @@ CheckinRequest::RequestInfo::RequestInfo( |
| uint64 android_id, |
| uint64 security_token, |
| const std::string& settings_digest, |
| - const std::vector<std::string>& account_ids, |
|
fgorski
2014/06/13 18:17:10
I'll have to add it back once we have AccountMappe
|
| const checkin_proto::ChromeBuildProto& chrome_build_proto) |
| : android_id(android_id), |
| security_token(security_token), |
| settings_digest(settings_digest), |
| - account_ids(account_ids), |
| chrome_build_proto(chrome_build_proto) { |
| } |
| @@ -129,13 +127,6 @@ void CheckinRequest::Start() { |
| checkin->set_type(checkin_proto::DEVICE_CHROME_BROWSER); |
| #endif |
| - for (std::vector<std::string>::const_iterator iter = |
| - request_info_.account_ids.begin(); |
| - iter != request_info_.account_ids.end(); |
| - ++iter) { |
| - request.add_account_cookie("[" + *iter + "]"); |
| - } |
| - |
| std::string upload_data; |
| CHECK(request.SerializeToString(&upload_data)); |