Index: chrome/browser/profiles/avatar_menu.cc |
diff --git a/chrome/browser/profiles/avatar_menu.cc b/chrome/browser/profiles/avatar_menu.cc |
index 8f50fc7cba6516c06f79fb818aa429151cd8c8f1..caae07b80aa0452f1cd1671cbad08a570d0393ba 100644 |
--- a/chrome/browser/profiles/avatar_menu.cc |
+++ b/chrome/browser/profiles/avatar_menu.cc |
@@ -47,6 +47,21 @@ const char kAlwaysShowSwitcherGroupName[] = "AlwaysShow"; |
} // namespace |
+#if defined(OS_ANDROID) |
+AvatarMenu::AvatarMenu(ProfileInfoInterface* profile_cache, |
+ AvatarMenuObserver* observer, |
+ Browser* browser) |
+ : profile_list_(nullptr), |
+ menu_actions_(nullptr), |
+#if defined(ENABLE_SUPERVISED_USERS) |
+ supervised_user_observer_(this), |
+#endif |
+ profile_info_(profile_cache), |
+ observer_(observer), |
+ browser_(browser) { |
+ NOTIMPLEMENTED(); |
+} |
+#else |
AvatarMenu::AvatarMenu(ProfileInfoInterface* profile_cache, |
AvatarMenuObserver* observer, |
Browser* browser) |
@@ -75,6 +90,7 @@ AvatarMenu::AvatarMenu(ProfileInfoInterface* profile_cache, |
} |
#endif |
} |
+#endif // OS_ANDROID |
AvatarMenu::~AvatarMenu() { |
g_browser_process->profile_manager()-> |