| Index: google_apis/gcm/engine/gcm_store_impl.cc
|
| diff --git a/google_apis/gcm/engine/gcm_store_impl.cc b/google_apis/gcm/engine/gcm_store_impl.cc
|
| index a4cbfe229b5df447ebc37c185c4b9085bf593769..8ac2521028ec444ee9a82919cc9f83156492b621 100644
|
| --- a/google_apis/gcm/engine/gcm_store_impl.cc
|
| +++ b/google_apis/gcm/engine/gcm_store_impl.cc
|
| @@ -357,7 +357,8 @@ void GCMStoreImpl::Backend::Load(StoreOpenMode open_mode,
|
| int gcm_registration_count = 0;
|
| int instance_id_token_count = 0;
|
| for (const auto& registration : result->registrations) {
|
| - if (base::StartsWithASCII(registration.first, "iid-", true))
|
| + if (base::StartsWith(registration.first, "iid-",
|
| + base::CompareCase::SENSITIVE))
|
| instance_id_token_count++;
|
| else
|
| gcm_registration_count++;
|
|
|