Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1510)

Unified Diff: chrome/browser/chromeos/boot_times_loader.h

Issue 2003001: Add time for when chrome's main() is called. (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/boot_times_loader.h
diff --git a/chrome/browser/chromeos/boot_times_loader.h b/chrome/browser/chromeos/boot_times_loader.h
index ad7109bf2a8b9a7da4519dc9b1bced865e0baae4..359202705618ca4c7d0909fc976a66ad677f76e2 100644
--- a/chrome/browser/chromeos/boot_times_loader.h
+++ b/chrome/browser/chromeos/boot_times_loader.h
@@ -32,11 +32,15 @@ class BootTimesLoader : public CancelableRequestProvider {
double firmware; // Time from power button to kernel being loaded.
double pre_startup; // Time from kernel to system code being called.
double x_started; // Time X server is ready to be connected to.
+ double chrome_exec; // Time session manager executed Chrome.
+ double chrome_main; // Time chrome's main() was called.
double login_prompt_ready; // Time login (or OOB) panel is displayed.
BootTimes() : firmware(0),
pre_startup(0),
x_started(0),
+ chrome_exec(0),
+ chrome_main(0),
login_prompt_ready(0) {}
} BootTimes;

Powered by Google App Engine
This is Rietveld 408576698