Chromium Code Reviews| Index: chrome/common/startup_metric_utils.h |
| diff --git a/chrome/common/startup_metric_utils.h b/chrome/common/startup_metric_utils.h |
| index e82578bcc38d1ddfc985e668791b6c03c3cb3aa0..2871a9a6228cfe23d06921ca6c5dc22c8e166454 100644 |
| --- a/chrome/common/startup_metric_utils.h |
| +++ b/chrome/common/startup_metric_utils.h |
| @@ -31,6 +31,11 @@ void SetNonBrowserUIDisplayed(); |
| // timestamp. |
| void RecordMainEntryPointTime(); |
| +// On Android the entry point time is the time at which the Java code starts. |
| +// This is recorded on the Java side, and then passed to the C++ side once the |
| +// C++ library is loaded and running. |
| +void RecordSavedMainEntryPointTime(const base::Time& entry_point_time); |
|
jeremy
2013/08/27 19:18:51
# if defined(OS_ANDROID)
aberent
2013/08/28 15:53:05
Done.
|
| + |
| // Called just before the message loop is about to start. Entry point to record |
| // startup stats. |
| // |is_first_run| - is the current launch part of a first run. |