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..cad9a7cc735c56b64447ad05d3a57ff791f0720d 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,8 @@ void SystemTray::CreateItems(SystemTrayDelegate* delegate) { |
| AddTrayItem(new internal::TrayIME(this)); |
| tray_accessibility_ = new internal::TrayAccessibility(this); |
| AddTrayItem(tray_accessibility_); |
| + tray_tracing_ = new internal::TrayTracing(this); |
| + AddTrayItem(tray_tracing_); |
|
rkc
2013/08/08 21:56:25
This can be replaced with,
AddTrayItem(new interna
Zachary Kuznia
2013/08/08 22:44:23
Done.
|
| #if defined(OS_CHROMEOS) |
| AddTrayItem( |
| new internal::TrayPower(this, message_center::MessageCenter::Get())); |