Chromium Code Reviews| 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 16a64525c3436361ae119b913d4ea76e257f8623..2fc5b166ed3e6ed289307c764f44ac2f04dc70df 100644 |
| --- a/chrome/browser/chrome_browser_main_win.cc |
| +++ b/chrome/browser/chrome_browser_main_win.cc |
| @@ -22,6 +22,7 @@ |
| #include "base/win/windows_version.h" |
| #include "base/win/wrapped_window_proc.h" |
| #include "chrome/browser/browser_util_win.h" |
| +#include "chrome/browser/install_module_verifier_win.h" |
| #include "chrome/browser/profiles/profile_info_cache.h" |
| #include "chrome/browser/profiles/profile_shortcut_manager.h" |
| #include "chrome/browser/shell_integration.h" |
| @@ -224,6 +225,12 @@ void ChromeBrowserMainPartsWin::ShowMissingLocaleMessageBox() { |
| MB_OK | MB_ICONERROR | MB_TOPMOST); |
| } |
| +void ChromeBrowserMainPartsWin::PostBrowserStart() { |
| + ChromeBrowserMainParts::PostBrowserStart(); |
| + InitiateInstalledModuleVerification(); |
| +} |
| + |
|
erikwright (departed)
2013/09/13 14:47:07
remove one blank line
erikwright (departed)
2013/09/13 20:19:56
Done.
|
| + |
| // static |
| void ChromeBrowserMainPartsWin::PrepareRestartOnCrashEnviroment( |
| const CommandLine& parsed_command_line) { |