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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 393753002: mac: Add a profiler for startup time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test Created 6 years, 5 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:
Download patch
« chrome/browser/mac/mac_startup_profiler.cc ('K') | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index feed2d6493d55bdb71b68bf29d5195c3587f53be..a162dc1d1153939cf839fe4d73b9182d1335f511 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -18921,6 +18921,63 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Events seen by the OSX NSException swizzle.</summary>
</histogram>
+<histogram name="OSX.Startup.AwakeFromNib" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
Ilya Sherman 2014/07/15 18:14:24 Optional nit: I'd change the tense from present ("
erikchen 2014/07/15 21:39:43 Done.
+ invocation of -[AppControllerMac awakeFromNib].
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.DidFinishLaunching" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of -[AppControllerMac didFinishLaunching:]. This is the amount of
+ time it takes for the dock icon to stop bouncing.
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.PostMainMessageLoopStart" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of ChromeBrowserMainPartsMac::PostMainMessageLoopStart.
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.PostProfileInit" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of ChromeBrowserMainPartsMac::PostProfileInit.
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.PreMainMessageLoopStart" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of ChromeBrowserMainPartsMac::PreMainMessageLoopStart.
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.PreProfileInit" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of ChromeBrowserMainPartsMac::PreProfileInit.
+ </summary>
+</histogram>
+
+<histogram name="OSX.Startup.WillFinishLaunching" units="milliseconds">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ The amount of time that elapses between the launch of Chrome and the
+ invocation of -[AppControllerMac willFinishLaunching:].
+ </summary>
+</histogram>
+
<histogram name="OutdatedUpgradeBubble.NumLaterPerEnableAU">
<owner>mad@chromium.org</owner>
<summary>
« chrome/browser/mac/mac_startup_profiler.cc ('K') | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698