| Index: google_apis/drive/test_util.cc
|
| diff --git a/google_apis/drive/test_util.cc b/google_apis/drive/test_util.cc
|
| index f74c794d35e55523effea680842de21aa4a0f38f..aa2d9ebe3685691d37a3fd3a4f95e76e76dacc73 100644
|
| --- a/google_apis/drive/test_util.cc
|
| +++ b/google_apis/drive/test_util.cc
|
| @@ -26,7 +26,7 @@ namespace test_util {
|
| bool RemovePrefix(const std::string& input,
|
| const std::string& prefix,
|
| std::string* output) {
|
| - if (!base::StartsWithASCII(input, prefix, true /* case sensitive */))
|
| + if (!base::StartsWith(input, prefix, base::CompareCase::SENSITIVE))
|
| return false;
|
|
|
| *output = input.substr(prefix.size());
|
|
|