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

Unified Diff: ash/system/tray/system_tray.cc

Issue 22654003: Create system tray item for accessing chrome://slow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff to the correct base Created 7 years, 4 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:
View side-by-side diff with in-line comments
Download patch
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()));

Powered by Google App Engine
This is Rietveld 408576698