| Index: chrome/browser/chrome_browser_main_win.cc
|
| diff --git a/chrome/browser/chrome_browser_main_win.cc b/chrome/browser/chrome_browser_main_win.cc
|
| index bf521435e96daaaa45003ec3b9b51d319002ce03..ff6c5f1fccc84223d82feff25a4ab4c06c2521c2 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -37,6 +37,8 @@
|
| #include "chrome/browser/first_run/first_run.h"
|
| #include "chrome/browser/install_verification/win/install_verification.h"
|
| #include "chrome/browser/profiles/profile_shortcut_manager.h"
|
| +#include "chrome/browser/safe_browsing/settings_reset_prompt/settings_reset_prompt_config.h"
|
| +#include "chrome/browser/safe_browsing/settings_reset_prompt/settings_reset_prompt_controller.h"
|
| #include "chrome/browser/shell_integration.h"
|
| #include "chrome/browser/ui/simple_message_box.h"
|
| #include "chrome/browser/ui/uninstall_browser_prompt.h"
|
| @@ -369,6 +371,14 @@ void ChromeBrowserMainPartsWin::PostBrowserStart() {
|
|
|
| InitializeChromeElf();
|
|
|
| + if (base::FeatureList::IsEnabled(safe_browsing::kSettingsResetPrompt)) {
|
| + content::BrowserThread::PostAfterStartupTask(
|
| + FROM_HERE,
|
| + content::BrowserThread::GetTaskRunnerForThread(
|
| + content::BrowserThread::UI),
|
| + base::Bind(safe_browsing::MaybeShowSettingsResetPromptWithDelay));
|
| + }
|
| +
|
| // Record UMA data about whether the fault-tolerant heap is enabled.
|
| // Use a delayed task to minimize the impact on startup time.
|
| content::BrowserThread::PostDelayedTask(
|
|
|