From 17119db74dbbe1ac56d6e974e3002618198a4740 Mon Sep 17 00:00:00 2001 From: Pete Miller Date: Wed, 11 Dec 2024 21:35:15 -0800 Subject: [PATCH] enable AIChatHistory feature for android and desktop --- components/ai_chat/core/common/features.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/ai_chat/core/common/features.cc b/components/ai_chat/core/common/features.cc index fd7a18b2d532..2530f811a7ce 100644 --- a/components/ai_chat/core/common/features.cc +++ b/components/ai_chat/core/common/features.cc @@ -37,7 +37,11 @@ bool IsAIChatEnabled() { BASE_FEATURE(kAIChatHistory, "AIChatHistory", +#if BUILDFLAG(IS_IOS) base::FEATURE_DISABLED_BY_DEFAULT); +#else + base::FEATURE_ENABLED_BY_DEFAULT); +#endif bool IsAIChatHistoryEnabled() { return base::FeatureList::IsEnabled(features::kAIChatHistory);