Separate LaunchProgram from mac implementation

This commit is contained in:
Cheng Zhao 2016-06-02 16:23:46 +09:00
parent 060829da64
commit c3fe2dae9d
4 changed files with 77 additions and 55 deletions

View file

@ -153,7 +153,7 @@ int AtomMainDelegate::RunProcess(
const std::string& process_type,
const content::MainFunctionParams& main_function_params) {
if (process_type == kRelauncherProcess)
return relauncher::internal::RelauncherMain(main_function_params);
return relauncher::RelauncherMain(main_function_params);
else
return -1;
}