| Index: chrome/browser/ui/app_list/app_list_syncable_service.cc
 | 
| diff --git a/chrome/browser/ui/app_list/app_list_syncable_service.cc b/chrome/browser/ui/app_list/app_list_syncable_service.cc
 | 
| index 5a44a21f61a7bc8ce7acd746df02651a50591936..7ab733bf9cf1cedee37148ac3bdb5fea5f055249 100644
 | 
| --- a/chrome/browser/ui/app_list/app_list_syncable_service.cc
 | 
| +++ b/chrome/browser/ui/app_list/app_list_syncable_service.cc
 | 
| @@ -142,7 +142,8 @@ bool GetAppListItemType(AppListItem* item,
 | 
|  }
 | 
|  
 | 
|  bool IsDriveAppSyncId(const std::string& sync_id) {
 | 
| -  return base::StartsWithASCII(sync_id, kDriveAppSyncIdPrefix, true);
 | 
| +  return base::StartsWith(sync_id, kDriveAppSyncIdPrefix,
 | 
| +                          base::CompareCase::SENSITIVE);
 | 
|  }
 | 
|  
 | 
|  std::string GetDriveAppSyncId(const std::string& drive_app_id) {
 | 
| 
 |