| Index: chrome/browser/first_run/first_run_win.cc
|
| diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc
|
| index a66fd8c9631a935484c58bd87fd0b415980f8e13..024df6357e8c595752e4d99ae80aaa6fbf725fab 100644
|
| --- a/chrome/browser/first_run/first_run_win.cc
|
| +++ b/chrome/browser/first_run/first_run_win.cc
|
| @@ -28,6 +28,8 @@
|
| #include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/browser/process_singleton.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| +#include "chrome/browser/shell_integration.h"
|
| +#include "chrome/browser/ui/startup/default_browser_prompt.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/chrome_paths.h"
|
| #include "chrome/common/chrome_result_codes.h"
|
| @@ -533,6 +535,10 @@ void AutoImport(
|
| process_singleton->Unlock();
|
| CreateSentinel();
|
| #endif // !defined(USE_AURA)
|
| + if (ShellIntegration::IsDefaultBrowser() !=
|
| + ShellIntegration::IS_DEFAULT_WEB_CLIENT) {
|
| + browser::ShowFirstRunDefaultBrowserPrompt(profile);
|
| + }
|
| }
|
|
|
| int ImportNow(Profile* profile, const CommandLine& cmdline) {
|
|
|