Files
brave-core/patches/components-sync_device_info-device_info.cc.patch

25 lines
1.2 KiB
Diff

diff --git a/components/sync_device_info/device_info.cc b/components/sync_device_info/device_info.cc
index 9dac3f990d14afdf8de2c2036e57f9bdf97609e8..b972c31de9e8e541846b4e94afb16b029e93970d 100644
--- a/components/sync_device_info/device_info.cc
+++ b/components/sync_device_info/device_info.cc
@@ -82,7 +82,8 @@ DeviceInfo::DeviceInfo(
bool desktop_to_ios_promo_receiving_enabled,
const MobilePromoOnDesktopPromoTypeSet&
desktop_to_ios_promo_receiving_types,
- GlicExperimentalTriggeringState glic_experimental_triggering_state)
+ GlicExperimentalTriggeringState glic_experimental_triggering_state,
+ SelfDeleteSupport self_delete_support)
: guid_(guid),
client_name_(client_name),
chrome_version_(chrome_version),
@@ -107,7 +108,8 @@ DeviceInfo::DeviceInfo(
desktop_to_ios_promo_receiving_enabled),
desktop_to_ios_promo_receiving_types_(
desktop_to_ios_promo_receiving_types),
- glic_experimental_triggering_state_(glic_experimental_triggering_state) {}
+ glic_experimental_triggering_state_(glic_experimental_triggering_state),
+ self_delete_support_(self_delete_support) {}
DeviceInfo::~DeviceInfo() = default;