Chromium changes: https://chromium.googlesource.com/chromium/src/+/ba1bc87f5b13d8446edbd4d30013806bd4ce2d41 commit ba1bc87f5b13d8446edbd4d30013806bd4ce2d41 Author: Norge Vizcay <vizcay@google.com> Date: Wed Mar 11 00:42:18 2026 -0700 Remove kSyncAutofillLoyaltyCard feature flag The kSyncAutofillLoyaltyCard feature has been launched. This CL removes the feature flag and its associated conditional logic, making the syncing of loyalty cards from Google Wallet enabled by default. Bug: b:393119606 Test: components_unittests --gtest_filter=ValuablesDataManagerTest.* Test: sync_integration_tests --gtest_filter=SingleClientValuablesSyncTest.* Test: unit_tests --gtest_filter=SyncServiceFactoryTest.* Change-Id: I63f09797a9cab0c28edb0f0439c7d1ef130e4fbb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7654135 Commit-Queue: Norge Vizcay <vizcay@google.com> Reviewed-by: Marc Treib <treib@chromium.org> Reviewed-by: Etienne Bergeron <etienneb@chromium.org> Cr-Commit-Position: refs/heads/main@{#1597558}
18 lines
583 B
C++
18 lines
583 B
C++
/* Copyright (c) 2024 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 <components/sync/base/features.cc>
|
|
|
|
namespace syncer {
|
|
|
|
OVERRIDE_FEATURE_DEFAULT_STATES({{
|
|
{kSyncAutofillValuableMetadata, base::FEATURE_DISABLED_BY_DEFAULT},
|
|
{kSyncDetermineAccountManagedStatus, base::FEATURE_DISABLED_BY_DEFAULT},
|
|
}});
|
|
|
|
} // namespace syncer
|