| Index: google_apis/gcm/gcm_client_impl.cc
|
| diff --git a/google_apis/gcm/gcm_client_impl.cc b/google_apis/gcm/gcm_client_impl.cc
|
| index 640977afb806f28efd0624d4a181f0d7495b2a5c..d7e5ef8ea297d8fcd43cb64ecd0de1dee92fb7cc 100644
|
| --- a/google_apis/gcm/gcm_client_impl.cc
|
| +++ b/google_apis/gcm/gcm_client_impl.cc
|
| @@ -298,14 +298,14 @@ void GCMClientImpl::CheckOut() {
|
|
|
| void GCMClientImpl::Register(const std::string& app_id,
|
| const std::string& cert,
|
| - const std::vector<std::string>& sender_ids) {
|
| + const std::string& sender_id) {
|
| DCHECK_EQ(state_, READY);
|
| RegistrationRequest::RequestInfo request_info(
|
| device_checkin_info_.android_id,
|
| device_checkin_info_.secret,
|
| app_id,
|
| cert,
|
| - sender_ids);
|
| + sender_id);
|
| DCHECK_EQ(0u, pending_registrations_.count(app_id));
|
|
|
| RegistrationRequest* registration_request =
|
|
|