| 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 07aabe5329717d81ef555552321a0d58ad4aca8e..9b1e9ced3ea94d68668e095400189ff13b5025f8 100644
|
| --- a/chrome/browser/chrome_browser_main_win.cc
|
| +++ b/chrome/browser/chrome_browser_main_win.cc
|
| @@ -99,17 +99,6 @@ void WarnAboutMinimumSystemRequirements() {
|
| }
|
| }
|
|
|
| -void RecordBrowserStartupTime() {
|
| - // Calculate the time that has elapsed from our own process creation.
|
| - FILETIME creation_time = {};
|
| - FILETIME ignore = {};
|
| - ::GetProcessTimes(::GetCurrentProcess(), &creation_time, &ignore, &ignore,
|
| - &ignore);
|
| -
|
| - RecordPreReadExperimentTime("Startup.BrowserMessageLoopStartTime",
|
| - base::Time::Now() - base::Time::FromFileTime(creation_time));
|
| -}
|
| -
|
| void ShowCloseBrowserFirstMessageBox() {
|
| const string16 title = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME);
|
| const string16 message = l10n_util::GetStringUTF16(IDS_UNINSTALL_CLOSE_APP);
|
|
|