| Index: chrome/browser/sync/test/integration/extensions_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/extensions_helper.cc b/chrome/browser/sync/test/integration/extensions_helper.cc
|
| index 4448958560587b5706b4bae33fafb99d650c7197..0be950947dbe0b99c88320b93b35686367c32903 100644
|
| --- a/chrome/browser/sync/test/integration/extensions_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/extensions_helper.cc
|
| @@ -124,7 +124,8 @@ std::string CreateFakeExtensionName(int index) {
|
| }
|
|
|
| bool ExtensionNameToIndex(const std::string& name, int* index) {
|
| - if (!base::StartsWithASCII(name, extension_name_prefix, true) ||
|
| + if (!base::StartsWith(name, extension_name_prefix,
|
| + base::CompareCase::SENSITIVE) ||
|
| !base::StringToInt(name.substr(strlen(extension_name_prefix)), index)) {
|
| LOG(WARNING) << "Unable to convert extension name \"" << name
|
| << "\" to index";
|
|
|