| 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 b7624c8f3f41b6d871867a76dc6dc86e50b2710f..6922bbdd8f4a4d3188d140f3c0f5f2f1253ba52d 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
|
| @@ -144,7 +144,7 @@ SyncStatusCode DriveApiErrorCodeToSyncStatusCode(
|
|
|
| bool RemovePrefix(const std::string& str, const std::string& prefix,
|
| std::string* out) {
|
| - if (!base::StartsWithASCII(str, prefix, true)) {
|
| + if (!base::StartsWith(str, prefix, base::CompareCase::SENSITIVE)) {
|
| if (out)
|
| *out = str;
|
| return false;
|
|
|