Index: chrome/browser/notifications/profile_notification.cc |
diff --git a/chrome/browser/notifications/profile_notification.cc b/chrome/browser/notifications/profile_notification.cc |
index 745820a2ee5862b857b3f778540eab4c2b540b5a..000922d0c08822a9b105c6355737054dacd4c2d7 100644 |
--- a/chrome/browser/notifications/profile_notification.cc |
+++ b/chrome/browser/notifications/profile_notification.cc |
@@ -6,6 +6,7 @@ |
#include "base/strings/stringprintf.h" |
#include "chrome/browser/ui/ash/multi_user/multi_user_util.h" |
+#include "components/user_manager/user_id.h" |
// static |
std::string ProfileNotification::GetProfileNotificationId( |
@@ -31,7 +32,7 @@ ProfileNotification::ProfileNotification( |
notification) { |
DCHECK(profile); |
#if defined(OS_CHROMEOS) |
- notification_.set_profile_id(multi_user_util::GetUserIDFromProfile(profile)); |
+ notification_.set_profile_id(multi_user_util::GetUserIDFromProfile(profile).GetUserEmail()); |
#endif |
} |