Home
last modified time | relevance | path

Searched refs:new_cl (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/
Dbrowser_shutdown.cc210 scoped_ptr<CommandLine> new_cl(new CommandLine(old_cl.GetProgram())); in Shutdown() local
221 new_cl->AppendSwitchNative(i->first, i->second); in Shutdown()
223 new_cl->AppendSwitch(i->first); in Shutdown()
226 if (!new_cl->HasSwitch(switches::kRestoreLastSession)) in Shutdown()
227 new_cl->AppendSwitch(switches::kRestoreLastSession); in Shutdown()
230 upgrade_util::RelaunchChromeBrowser(*new_cl.get()); in Shutdown()
234 new_cl->AppendSwitch(switches::kActivateOnLaunch); in Shutdown()
235 base::LaunchApp(*new_cl.get(), false, false, NULL); in Shutdown()
Dbrowser_process_impl.cc1044 scoped_ptr<CommandLine> new_cl(new CommandLine(old_cl->GetProgram())); in RestartPersistentInstance() local
1057 new_cl->AppendSwitchNative(i->first, i->second); in RestartPersistentInstance()
1059 new_cl->AppendSwitch(i->first); in RestartPersistentInstance()
1065 if (!new_cl->HasSwitch(kSwitchesToAddOnAutorestart[i])) in RestartPersistentInstance()
1066 new_cl->AppendSwitch(kSwitchesToAddOnAutorestart[i]); in RestartPersistentInstance()
1073 upgrade_util::SetNewCommandLine(new_cl.release()); in RestartPersistentInstance()