Separate implementations of RelauncherMain and RelauncherSynchronizeWithParent

This commit is contained in:
Cheng Zhao 2016-06-02 09:09:32 +09:00
parent fc30a2a084
commit 060829da64
5 changed files with 224 additions and 221 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::RelauncherMain(main_function_params);
return relauncher::internal::RelauncherMain(main_function_params);
else
return -1;
}