| Index: chrome/installer/util/auto_launch_util.cc
|
| diff --git a/chrome/installer/util/auto_launch_util.cc b/chrome/installer/util/auto_launch_util.cc
|
| index 60ef370cb29ce0ea97eeb4ab481a204c79d688d4..953b2d2c95e44f6a51ebe9067c43708138ff987a 100644
|
| --- a/chrome/installer/util/auto_launch_util.cc
|
| +++ b/chrome/installer/util/auto_launch_util.cc
|
| @@ -62,7 +62,7 @@ string16 ProfileToKeyName(const string16& profile_directory) {
|
| crypto::SHA256HashString(input, hash, sizeof(hash));
|
| std::string hash_string = base::HexEncode(hash, sizeof(hash));
|
| return string16(kAutolaunchKeyValue) +
|
| - ASCIIToWide("_") + ASCIIToWide(hash_string);
|
| + base::ASCIIToWide("_") + base::ASCIIToWide(hash_string);
|
| }
|
|
|
| // Returns whether the Chrome executable specified in |application_path| is set
|
|
|