| Index: chrome/browser/browser_main_win.cc
|
| ===================================================================
|
| --- chrome/browser/browser_main_win.cc (revision 98387)
|
| +++ chrome/browser/browser_main_win.cc (working copy)
|
| @@ -96,8 +96,12 @@
|
| ::GetProcessTimes(::GetCurrentProcess(), &creation_time, &ignore, &ignore,
|
| &ignore);
|
|
|
| - RecordPreReadExperimentTime("Startup.BrowserMessageLoopStartTime",
|
| - base::Time::Now() - base::Time::FromFileTime(creation_time));
|
| + UMA_HISTOGRAM_CUSTOM_TIMES(
|
| + "Startup.BrowserMessageLoopStartTime",
|
| + base::Time::Now() - base::Time::FromFileTime(creation_time),
|
| + base::TimeDelta::FromMilliseconds(1),
|
| + base::TimeDelta::FromHours(1),
|
| + 100);
|
| }
|
|
|
| int AskForUninstallConfirmation() {
|
|
|