Commit 0e905449 authored by Nohemi Fernandez's avatar Nohemi Fernandez Committed by Commit Bot

[iOS] Remove kClearSyncedData feature flag.

The ClearSyncedData feature has been enabled by default.

Bug: 1005509
Change-Id: I799683d3cd1e9194d66751c1d4ac52f578949f04
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2260732Reviewed-by: default avatarSylvain Defresne <sdefresne@chromium.org>
Commit-Queue: Nohemi Fernandez <fernandex@chromium.org>
Cr-Commit-Position: refs/heads/master@{#781371}
parent b6c05583
...@@ -540,9 +540,6 @@ const flags_ui::FeatureEntry kFeatureEntries[] = { ...@@ -540,9 +540,6 @@ const flags_ui::FeatureEntry kFeatureEntries[] = {
{"contained-browser-bvc", flag_descriptions::kContainedBVCName, {"contained-browser-bvc", flag_descriptions::kContainedBVCName,
flag_descriptions::kContainedBVCDescription, flags_ui::kOsIos, flag_descriptions::kContainedBVCDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(kContainedBVC)}, FEATURE_VALUE_TYPE(kContainedBVC)},
{"clear-synced-data", flag_descriptions::kClearSyncedDataName,
flag_descriptions::kClearSyncedDataDescription, flags_ui::kOsIos,
FEATURE_VALUE_TYPE(kClearSyncedData)},
{"ssl-committed-interstitials", {"ssl-committed-interstitials",
flag_descriptions::kSSLCommittedInterstitialsName, flag_descriptions::kSSLCommittedInterstitialsName,
flag_descriptions::kSSLCommittedInterstitialsDescription, flags_ui::kOsIos, flag_descriptions::kSSLCommittedInterstitialsDescription, flags_ui::kOsIos,
......
...@@ -137,12 +137,6 @@ const char kBreakpadNoDelayInitialUploadDescription[] = ...@@ -137,12 +137,6 @@ const char kBreakpadNoDelayInitialUploadDescription[] =
"disabled, initial upload is delayed until deferred initialization. This " "disabled, initial upload is delayed until deferred initialization. This "
"does not affect recovery mode."; "does not affect recovery mode.";
const char kClearSyncedDataName[] = "Clear Synced Data on Sign Out";
const char kClearSyncedDataDescription[] =
"When enabled users signed in with a non-managed account will be "
"presented with the option to clear synced data from the local "
"device when signing out.";
extern const char kChangeTabSwitcherPositionName[] = extern const char kChangeTabSwitcherPositionName[] =
"Change tab switcher button position"; "Change tab switcher button position";
extern const char kChangeTabSwitcherPositionDescription[] = extern const char kChangeTabSwitcherPositionDescription[] =
......
...@@ -106,11 +106,6 @@ extern const char kLogBreadcrumbsDescription[]; ...@@ -106,11 +106,6 @@ extern const char kLogBreadcrumbsDescription[];
extern const char kBreakpadNoDelayInitialUploadName[]; extern const char kBreakpadNoDelayInitialUploadName[];
extern const char kBreakpadNoDelayInitialUploadDescription[]; extern const char kBreakpadNoDelayInitialUploadDescription[];
// Title and description for the flag to control if Chrome should wipe synced
// data from a local device on sign-out from a non-managed account.
extern const char kClearSyncedDataName[];
extern const char kClearSyncedDataDescription[];
// Title and description for the flag that controls the tab switcher position. // Title and description for the flag that controls the tab switcher position.
extern const char kChangeTabSwitcherPositionName[]; extern const char kChangeTabSwitcherPositionName[];
extern const char kChangeTabSwitcherPositionDescription[]; extern const char kChangeTabSwitcherPositionDescription[];
......
...@@ -34,9 +34,6 @@ const base::Feature kContainedBVC{"ContainedBVC", ...@@ -34,9 +34,6 @@ const base::Feature kContainedBVC{"ContainedBVC",
const base::Feature kTestFeature{"TestFeature", const base::Feature kTestFeature{"TestFeature",
base::FEATURE_DISABLED_BY_DEFAULT}; base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kClearSyncedData{"ClearSyncedData",
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kFirstResponderSendAction{ const base::Feature kFirstResponderSendAction{
"FirstResponderSendAction", base::FEATURE_DISABLED_BY_DEFAULT}; "FirstResponderSendAction", base::FEATURE_DISABLED_BY_DEFAULT};
......
...@@ -38,10 +38,6 @@ extern const base::Feature kContainedBVC; ...@@ -38,10 +38,6 @@ extern const base::Feature kContainedBVC;
// features in tests works. // features in tests works.
extern const base::Feature kTestFeature; extern const base::Feature kTestFeature;
// Feature flag to display a new option that wipes synced data on a local
// device when signing out from a non-managed account.
extern const base::Feature kClearSyncedData;
// Verify if the crash in https://crbug.com/816427 is fixed on iOS 12. // Verify if the crash in https://crbug.com/816427 is fixed on iOS 12.
extern const base::Feature kFirstResponderSendAction; extern const base::Feature kFirstResponderSendAction;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment