Chromium Code Reviews| Index: ash/system/tray/system_tray.cc |
| diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc |
| index c93efc96d284f200e22844f9ec87530c72889810..136486a88720911ffa35c0af923e099c74f4d1d1 100644 |
| --- a/ash/system/tray/system_tray.cc |
| +++ b/ash/system/tray/system_tray.cc |
| @@ -24,6 +24,7 @@ |
| #include "ash/system/tray/tray_constants.h" |
| #include "ash/system/tray_accessibility.h" |
| #include "ash/system/tray_caps_lock.h" |
| +#include "ash/system/tray_tracing.h" |
| #include "ash/system/tray_update.h" |
| #include "ash/system/user/login_status.h" |
| #include "ash/system/user/tray_user.h" |
| @@ -166,6 +167,7 @@ void SystemTray::CreateItems(SystemTrayDelegate* delegate) { |
| AddTrayItem(new internal::TrayIME(this)); |
| tray_accessibility_ = new internal::TrayAccessibility(this); |
| AddTrayItem(tray_accessibility_); |
| + AddTrayItem(new internal::TrayTracing(this)); |
|
James Cook
2013/08/09 20:06:02
I think you want this inside #if defined(OS_CHROME
Zachary Kuznia
2013/08/09 20:58:04
Done.
|
| #if defined(OS_CHROMEOS) |
| AddTrayItem( |
| new internal::TrayPower(this, message_center::MessageCenter::Get())); |