Index: ash/mus/shell_delegate_mus.cc |
diff --git a/ash/mus/shell_delegate_mus.cc b/ash/mus/shell_delegate_mus.cc |
index 4a6b1047d0c6f307ca95e52fe5a235a14460d651..aa14e7f7f995874b6dc5889256f25ffc27d9c940 100644 |
--- a/ash/mus/shell_delegate_mus.cc |
+++ b/ash/mus/shell_delegate_mus.cc |
@@ -115,6 +115,10 @@ ShellDelegateMus::ShellDelegateMus(shell::Connector* connector) |
ShellDelegateMus::~ShellDelegateMus() {} |
+::shell::Connector* ShellDelegateMus::GetShellConnector() const { |
+ return connector_; |
+} |
+ |
bool ShellDelegateMus::IsFirstRunAfterBoot() const { |
NOTIMPLEMENTED(); |
return false; |
@@ -176,7 +180,7 @@ ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { |
SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() { |
#if defined(OS_CHROMEOS) |
- return new SystemTrayDelegateMus(connector_); |
+ return new SystemTrayDelegateMus(); |
#else |
// Windows and Linux do not support the services required for most system tray |
// items. Use the same stub delegate as ash_shell_with_content. |