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 9a19ceb12f19b9ba43f6364fe48998ddeb9a70f3..53745465ff7b49abf8042feb0c39bacb10f6a98d 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/chrome_elf_init_win.h" |
| #include "chrome/browser/install_verification/win/install_verification.h" |
| #include "chrome/browser/profiles/profile_info_cache.h" |
| #include "chrome/browser/profiles/profile_shortcut_manager.h" |
| @@ -252,6 +253,8 @@ void ChromeBrowserMainPartsWin::PostBrowserStart() { |
| FROM_HERE, |
| base::Bind(&VerifyInstallation), |
| base::TimeDelta::FromSeconds(45)); |
| + |
| + InitializeChromeElf(); |
|
sky
2014/01/07 23:15:08
Should we only do this in official builds?
csharp
2014/01/08 21:07:07
I don't think so since the chrome elf is present i
|
| } |
| // static |