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

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

Issue 11345017: Create ash memory monitor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New files Created 8 years, 2 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 64aee753e5a9b52899a82b38b577f4bec3cb01e2..385349f2626732833bb0f09be5b6a80da4bc993a 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -4,6 +4,7 @@
#include "ash/system/tray/system_tray.h"
+#include "ash/ash_switches.h"
#include "ash/shell.h"
#include "ash/shell/panel_window.h"
#include "ash/shell_window_ids.h"
@@ -15,6 +16,7 @@
#include "ash/system/drive/tray_drive.h"
#include "ash/system/ime/tray_ime.h"
#include "ash/system/locale/tray_locale.h"
+#include "ash/system/monitor/tray_monitor.h"
#include "ash/system/power/power_status_observer.h"
#include "ash/system/power/power_supply_status.h"
#include "ash/system/power/tray_power.h"
@@ -30,6 +32,7 @@
#include "ash/system/user/login_status.h"
#include "ash/system/user/tray_user.h"
#include "ash/wm/shelf_layout_manager.h"
+#include "base/command_line.h"
#include "base/logging.h"
#include "base/timer.h"
#include "base/utf_string_conversions.h"
@@ -196,6 +199,12 @@ void SystemTray::CreateItems() {
AddTrayItem(tray_caps_lock);
AddTrayItem(tray_settings);
AddTrayItem(tray_date);
+
+ // Add memory monitor if enabled.
+ CommandLine* cmd = CommandLine::ForCurrentProcess();
+ if (cmd->HasSwitch(ash::switches::kAshEnableMemoryMonitor))
+ AddTrayItem(new internal::TrayMonitor);
+
SetVisible(ash::Shell::GetInstance()->tray_delegate()->
GetTrayVisibilityOnStartup());
}

Powered by Google App Engine
This is Rietveld 408576698