Index: ash/system/settings/tray_settings.cc |
diff --git a/ash/system/settings/tray_settings.cc b/ash/system/settings/tray_settings.cc |
index ae1823d4e16b53ca96e607fac2c71dc76d0a2aa9..ed566d64b25b71b4cfbcc1f4047c59ec74829088 100644 |
--- a/ash/system/settings/tray_settings.cc |
+++ b/ash/system/settings/tray_settings.cc |
@@ -6,6 +6,7 @@ |
#include "ash/shell.h" |
#include "ash/system/power/power_status_view.h" |
+#include "ash/system/tray/system_tray.h" |
#include "ash/system/tray/system_tray_delegate.h" |
#include "ash/system/tray/tray_constants.h" |
#include "ash/system/tray/tray_views.h" |
@@ -114,8 +115,9 @@ class SettingsDefaultView : public ash::internal::ActionableView { |
} // namespace tray |
-TraySettings::TraySettings() |
- : default_view_(NULL) { |
+TraySettings::TraySettings(SystemTray* system_tray) |
+ : SystemTrayItem(system_tray), |
+ default_view_(NULL) { |
} |
TraySettings::~TraySettings() {} |