| 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 b90630a0594a85ee85b54fae61ef238fbe5a2a7c..1743d132e9566454976cf72da911c4377107c207 100644
 | 
| --- a/google_apis/gcm/engine/gcm_store_impl.cc
 | 
| +++ b/google_apis/gcm/engine/gcm_store_impl.cc
 | 
| @@ -342,7 +342,7 @@ void GCMStoreImpl::Backend::Load(const LoadCallback& callback) {
 | 
|    int gcm_registration_count = 0;
 | 
|    int instance_id_token_count = 0;
 | 
|    for (const auto& registration : result->registrations) {
 | 
| -    if (StartsWithASCII(registration.first, "iid-", true))
 | 
| +    if (base::StartsWithASCII(registration.first, "iid-", true))
 | 
|        instance_id_token_count++;
 | 
|      else
 | 
|        gcm_registration_count++;
 | 
| 
 |