Chromium Code Reviews| Index: chrome/browser/profiles/profile_shortcut_manager_win.cc |
| =================================================================== |
| --- chrome/browser/profiles/profile_shortcut_manager_win.cc (revision 132169) |
| +++ chrome/browser/profiles/profile_shortcut_manager_win.cc (working copy) |
| @@ -208,10 +208,10 @@ |
| void DeleteAutoLaunchValueForProfile( |
| const FilePath& profile_path) { |
| - if (auto_launch_util::WillLaunchAtLogin(FilePath(), |
| - profile_path.BaseName().value())) { |
| - auto_launch_util::SetWillLaunchAtLogin( |
| - false, FilePath(), profile_path.BaseName().value()); |
| + if (auto_launch_util::LaunchWithWindowAtLoginRequested( |
| + FilePath(), |
| + profile_path.BaseName().value())) { |
| + auto_launch_util::DisableAutoStartAtLogin(profile_path.BaseName().value()); |
|
grt (UTC plus 2)
2012/04/17 15:08:58
LaunchWithWindowAtLogin vs. AutoStartAtLogin?
Andrew T Wilson (Slow)
2012/04/18 01:07:36
Agreed that it would be good to have consistent te
|
| } |
| } |