From f1121e5f2991b6cd61151eec2225e67232f943ef Mon Sep 17 00:00:00 2001 From: Pete Miller Date: Mon, 16 Dec 2024 16:46:27 -0800 Subject: [PATCH] [AI Chat] disable history feature enabled by default on Android --- components/ai_chat/core/common/features.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ai_chat/core/common/features.cc b/components/ai_chat/core/common/features.cc index 2530f811a7c..4d9d85ae6a0 100644 --- a/components/ai_chat/core/common/features.cc +++ b/components/ai_chat/core/common/features.cc @@ -37,7 +37,7 @@ bool IsAIChatEnabled() { BASE_FEATURE(kAIChatHistory, "AIChatHistory", -#if BUILDFLAG(IS_IOS) +#if BUILDFLAG(IS_IOS) || BUILDFLAG(IS_ANDROID) base::FEATURE_DISABLED_BY_DEFAULT); #else base::FEATURE_ENABLED_BY_DEFAULT);