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