| Index: chrome/browser/mac/relauncher.cc
|
| diff --git a/chrome/browser/mac/relauncher.cc b/chrome/browser/mac/relauncher.cc
|
| index 1f3db819492db07fef740c51db52d031b3e273eb..e69ad2f7cbb267e5f56f6878236864e6ebdd60a7 100644
|
| --- a/chrome/browser/mac/relauncher.cc
|
| +++ b/chrome/browser/mac/relauncher.cc
|
| @@ -294,7 +294,7 @@ int RelauncherMain(const content::MainFunctionParams& main_parameters) {
|
| // won't contain the argv[0] of the relauncher process, the
|
| // RelauncherTypeArg() at argv[1], kRelauncherArgSeparator, or the
|
| // executable path of the process to be launched.
|
| - base::mac::ScopedCFTypeRef<CFMutableArrayRef> relaunch_args(
|
| + base::ScopedCFTypeRef<CFMutableArrayRef> relaunch_args(
|
| CFArrayCreateMutable(NULL, argc - 4, &kCFTypeArrayCallBacks));
|
| if (!relaunch_args) {
|
| LOG(ERROR) << "CFArrayCreateMutable";
|
| @@ -335,7 +335,7 @@ int RelauncherMain(const content::MainFunctionParams& main_parameters) {
|
| relaunch_executable.assign(arg);
|
| seen_relaunch_executable = true;
|
| } else {
|
| - base::mac::ScopedCFTypeRef<CFStringRef> arg_cf(
|
| + base::ScopedCFTypeRef<CFStringRef> arg_cf(
|
| base::SysUTF8ToCFStringRef(arg));
|
| if (!arg_cf) {
|
| LOG(ERROR) << "base::SysUTF8ToCFStringRef failed for " << arg;
|
|
|