Commit 3599570c authored by Nohemi Fernandez's avatar Nohemi Fernandez Committed by Commit Bot

[iOS] Enable ClearSyncedData feature by default.

The feature has been launched to 100% stable. Enable by default.

Bug: 1005509
Change-Id: I62051ded200e047901cf376c11e5c944b6c07c40
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2257325
Commit-Queue: Nohemi Fernandez <fernandex@chromium.org>
Reviewed-by: default avatarEugene But <eugenebut@chromium.org>
Cr-Commit-Position: refs/heads/master@{#781255}
parent 8a66fbf7
...@@ -16,9 +16,6 @@ ...@@ -16,9 +16,6 @@
}, },
{ {
"app": "ios_chrome_settings_egtests", "app": "ios_chrome_settings_egtests",
"test args": [
"--enable-features=ClearSyncedData"
],
"xcode parallelization": true, "xcode parallelization": true,
"shards": 1, "shards": 1,
"swarming tasks": 3 "swarming tasks": 3
......
...@@ -109,7 +109,6 @@ source_set("eg_tests") { ...@@ -109,7 +109,6 @@ source_set("eg_tests") {
"//components/safe_browsing/core/common:safe_browsing_prefs", "//components/safe_browsing/core/common:safe_browsing_prefs",
"//ios/chrome/app/strings", "//ios/chrome/app/strings",
"//ios/chrome/browser/tabs", "//ios/chrome/browser/tabs",
"//ios/chrome/browser/ui:feature_flags",
"//ios/chrome/browser/ui/authentication:eg_test_support", "//ios/chrome/browser/ui/authentication:eg_test_support",
"//ios/chrome/browser/ui/bookmarks:eg_test_support", "//ios/chrome/browser/ui/bookmarks:eg_test_support",
"//ios/chrome/test/app:test_support", "//ios/chrome/test/app:test_support",
......
...@@ -11,14 +11,12 @@ ...@@ -11,14 +11,12 @@
#import "ios/chrome/browser/ui/bookmarks/bookmark_earl_grey.h" #import "ios/chrome/browser/ui/bookmarks/bookmark_earl_grey.h"
#import "ios/chrome/browser/ui/bookmarks/bookmark_earl_grey_ui.h" #import "ios/chrome/browser/ui/bookmarks/bookmark_earl_grey_ui.h"
#import "ios/chrome/browser/ui/settings/google_services/accounts_table_view_controller_constants.h" #import "ios/chrome/browser/ui/settings/google_services/accounts_table_view_controller_constants.h"
#import "ios/chrome/browser/ui/ui_feature_flags.h"
#import "ios/chrome/grit/ios_strings.h" #import "ios/chrome/grit/ios_strings.h"
#import "ios/chrome/test/earl_grey/chrome_earl_grey.h" #import "ios/chrome/test/earl_grey/chrome_earl_grey.h"
#import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h" #import "ios/chrome/test/earl_grey/chrome_earl_grey_ui.h"
#import "ios/chrome/test/earl_grey/chrome_matchers.h" #import "ios/chrome/test/earl_grey/chrome_matchers.h"
#import "ios/chrome/test/earl_grey/chrome_test_case.h" #import "ios/chrome/test/earl_grey/chrome_test_case.h"
#import "ios/public/provider/chrome/browser/signin/fake_chrome_identity.h" #import "ios/public/provider/chrome/browser/signin/fake_chrome_identity.h"
#import "ios/testing/earl_grey/app_launch_configuration.h"
#import "ios/testing/earl_grey/earl_grey_test.h" #import "ios/testing/earl_grey/earl_grey_test.h"
#include "ui/base/l10n/l10n_util.h" #include "ui/base/l10n/l10n_util.h"
...@@ -65,12 +63,6 @@ id<GREYMatcher> NoBookmarksLabel() { ...@@ -65,12 +63,6 @@ id<GREYMatcher> NoBookmarksLabel() {
[super tearDown]; [super tearDown];
} }
- (AppLaunchConfiguration)appConfigurationForTestCase {
AppLaunchConfiguration config;
config.features_enabled.push_back(kClearSyncedData);
return config;
}
- (void)setUp { - (void)setUp {
[super setUp]; [super setUp];
......
...@@ -35,7 +35,7 @@ const base::Feature kTestFeature{"TestFeature", ...@@ -35,7 +35,7 @@ const base::Feature kTestFeature{"TestFeature",
base::FEATURE_DISABLED_BY_DEFAULT}; base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kClearSyncedData{"ClearSyncedData", const base::Feature kClearSyncedData{"ClearSyncedData",
base::FEATURE_DISABLED_BY_DEFAULT}; 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};
......
...@@ -74,11 +74,6 @@ chrome_ios_eg_test("ios_chrome_settings_egtests") { ...@@ -74,11 +74,6 @@ chrome_ios_eg_test("ios_chrome_settings_egtests") {
"//ios/chrome/browser/ui/settings/password:eg_tests", "//ios/chrome/browser/ui/settings/password:eg_tests",
"//ios/chrome/browser/ui/settings/sync:eg_tests", "//ios/chrome/browser/ui/settings/sync:eg_tests",
] ]
executable_args = [
"--args-json",
"{\"test_args\": [\"--enable-features=ClearSyncedData\"]}",
]
xctest = false xctest = false
} }
......
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