| Index: chrome/test/chromedriver/chrome_launcher.cc
|
| diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
|
| index cb77dc1fda09cf6d08721809996dc7815a640047..90ddedead93637c9053e92559cbe6f62e7edcec6 100644
|
| --- a/chrome/test/chromedriver/chrome_launcher.cc
|
| +++ b/chrome/test/chromedriver/chrome_launcher.cc
|
| @@ -573,8 +573,7 @@ void ConvertHexadecimalToIDAlphabet(std::string* id) {
|
| std::string GenerateExtensionId(const std::string& input) {
|
| uint8 hash[16];
|
| crypto::SHA256HashString(input, hash, sizeof(hash));
|
| - std::string output =
|
| - base::StringToLowerASCII(base::HexEncode(hash, sizeof(hash)));
|
| + std::string output = base::ToLowerASCII(base::HexEncode(hash, sizeof(hash)));
|
| ConvertHexadecimalToIDAlphabet(&output);
|
| return output;
|
| }
|
|
|