Index: chrome/browser/browser_shutdown.cc |
diff --git a/chrome/browser/browser_shutdown.cc b/chrome/browser/browser_shutdown.cc |
index e97ccbb9751099d528a919328bf99a0f17bf2f04..a315c9397f82e71e7af8d5a43d58b1e91a312a2d 100644 |
--- a/chrome/browser/browser_shutdown.cc |
+++ b/chrome/browser/browser_shutdown.cc |
@@ -90,6 +90,12 @@ void OnShutdownStarting(ShutdownType type) { |
if (shutdown_type_ != NOT_VALID) |
return; |
+#if !defined(OS_CHROMEOS) |
+ // Start the shutdown tracing. Note that On ChromeOS we have started this |
+ // already. |
+ chrome::StartShutdownTracing(); |
+#endif |
+ |
shutdown_type_ = type; |
// For now, we're only counting the number of renderer processes |
// since we can't safely count the number of plugin processes from this |