| Index: chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
 | 
| diff --git a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
 | 
| index fe6b67686ce1ee183d21305aab873262f89a2eee..9984d8e237c1830d91abeaf8223d412b3a5e086a 100644
 | 
| --- a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
 | 
| +++ b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
 | 
| @@ -153,7 +153,7 @@ SyncStatusCode DriveApiErrorCodeToSyncStatusCode(
 | 
|  
 | 
|  bool RemovePrefix(const std::string& str, const std::string& prefix,
 | 
|                    std::string* out) {
 | 
| -  if (!StartsWithASCII(str, prefix, true)) {
 | 
| +  if (!base::StartsWithASCII(str, prefix, true)) {
 | 
|      if (out)
 | 
|        *out = str;
 | 
|      return false;
 | 
| 
 |