From a7a7b2cc63f53ea20a0e806476f135ba9506c6b9 Mon Sep 17 00:00:00 2001 From: Max Karolinskiy <41635752+mkarolin@users.noreply.github.com> Date: Fri, 29 Aug 2025 09:36:00 -0400 Subject: [PATCH] Disables AimEligibilityService. (#30912) The service reaches out to google and we already disabled AI Mode anyway. --- .../omnibox/browser/aim_eligibility_service.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 chromium_src/components/omnibox/browser/aim_eligibility_service.cc diff --git a/chromium_src/components/omnibox/browser/aim_eligibility_service.cc b/chromium_src/components/omnibox/browser/aim_eligibility_service.cc new file mode 100644 index 00000000000..63e8f114318 --- /dev/null +++ b/chromium_src/components/omnibox/browser/aim_eligibility_service.cc @@ -0,0 +1,16 @@ +/* Copyright (c) 2025 The Brave Authors. All rights reserved. + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at https://mozilla.org/MPL/2.0/. */ + +#include "base/feature_override.h" + +#include + +namespace { + +OVERRIDE_FEATURE_DEFAULT_STATES({{ + {kAimEnabled, base::FEATURE_DISABLED_BY_DEFAULT}, +}}); + +} // namespace