Index: chrome/browser/browser_shutdown.cc |
diff --git a/chrome/browser/browser_shutdown.cc b/chrome/browser/browser_shutdown.cc |
index bfbe17168732679b85f9194468af2d77461992ab..2b4d923e34c14d9df22f37ef56e0663f2221e525 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 |