Index: ash/system/tray/test_system_tray_delegate.cc |
diff --git a/ash/system/tray/test_system_tray_delegate.cc b/ash/system/tray/test_system_tray_delegate.cc |
index 8e0cc6189f281b6ee858907b6aa15e03d4074deb..00a425ee582e840394ed92c3ac92873dd7ae5dc9 100644 |
--- a/ash/system/tray/test_system_tray_delegate.cc |
+++ b/ash/system/tray/test_system_tray_delegate.cc |
@@ -4,6 +4,8 @@ |
#include "ash/system/tray/test_system_tray_delegate.h" |
+#include <string> |
+ |
#include "ash/shell.h" |
#include "ash/shell_delegate.h" |
#include "ash/volume_control_delegate.h" |
@@ -92,6 +94,10 @@ user::LoginStatus TestSystemTrayDelegate::GetUserLoginStatus() const { |
return user::LOGGED_IN_USER; |
} |
+const std::string TestSystemTrayDelegate::GetEnterpriseDomain() const { |
+ return std::string(); |
+} |
+ |
bool TestSystemTrayDelegate::SystemShouldUpgrade() const { |
return true; |
} |
@@ -131,6 +137,9 @@ void TestSystemTrayDelegate::ShowIMESettings() { |
void TestSystemTrayDelegate::ShowHelp() { |
} |
+void TestSystemTrayDelegate::ShowPublicAccountInfo() { |
+} |
+ |
void TestSystemTrayDelegate::ShutDown() { |
MessageLoop::current()->Quit(); |
} |