From c64ad3d9c4a4cb3dcbdf7a4248d61f7910042cff Mon Sep 17 00:00:00 2001 From: Kyle Hickinson Date: Wed, 12 Mar 2025 14:55:20 -0400 Subject: [PATCH] [iOS] Fix crash when sync chain contains a device syncing tab groups --- .../browser/shared/public/features/features.mm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 chromium_src/ios/chrome/browser/shared/public/features/features.mm diff --git a/chromium_src/ios/chrome/browser/shared/public/features/features.mm b/chromium_src/ios/chrome/browser/shared/public/features/features.mm new file mode 100644 index 000000000000..fa3434a0a107 --- /dev/null +++ b/chromium_src/ios/chrome/browser/shared/public/features/features.mm @@ -0,0 +1,14 @@ +// 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/. + +#import "ios/chrome/browser/shared/public/features/features.h" + +#define IsTabGroupSyncEnabled IsTabGroupSyncEnabled_ChromiumImpl +#include "src/ios/chrome/browser/shared/public/features/features.mm" +#undef IsTabGroupSyncEnabled + +bool IsTabGroupSyncEnabled() { + return false; +}