Commit e2f8015e authored by Philip Rogers's avatar Philip Rogers Committed by Chromium LUCI CQ

Cleanup the RespectMacLCDTextSetting experiment

This has fully launched and the experiment can be removed.

Bug: 1079418
Change-Id: Ic06e85939829cce8ecf80fb0692b0b0d5e0595ab
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2613129Reviewed-by: default avatarCharlie Reis <creis@chromium.org>
Reviewed-by: default avatarRobert Kaplow <rkaplow@chromium.org>
Commit-Queue: Philip Rogers <pdr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#841072}
parent 6ccf4231
...@@ -558,11 +558,6 @@ const base::Feature kRenderDocument{"RenderDocument", ...@@ -558,11 +558,6 @@ const base::Feature kRenderDocument{"RenderDocument",
const base::Feature kSkipEarlyCommitPendingForCrashedFrame{ const base::Feature kSkipEarlyCommitPendingForCrashedFrame{
"SkipEarlyCommitPendingForCrashedFrame", base::FEATURE_DISABLED_BY_DEFAULT}; "SkipEarlyCommitPendingForCrashedFrame", base::FEATURE_DISABLED_BY_DEFAULT};
// Respect the MacOS system setting for subpixel text anti-aliasing.
// https://crbug.com/1079418.
const base::Feature kRespectMacLCDTextSetting{"RespectMacLCDTextSetting",
base::FEATURE_ENABLED_BY_DEFAULT};
// Run video capture service in the Browser process as opposed to a dedicated // Run video capture service in the Browser process as opposed to a dedicated
// utility process // utility process
const base::Feature kRunVideoCaptureServiceInBrowserProcess{ const base::Feature kRunVideoCaptureServiceInBrowserProcess{
......
...@@ -132,7 +132,6 @@ CONTENT_EXPORT extern const base::Feature kPushSubscriptionChangeEvent; ...@@ -132,7 +132,6 @@ CONTENT_EXPORT extern const base::Feature kPushSubscriptionChangeEvent;
CONTENT_EXPORT extern const base::Feature kDirectSockets; CONTENT_EXPORT extern const base::Feature kDirectSockets;
CONTENT_EXPORT extern const base::Feature kReloadHiddenTabsWithCrashedSubframes; CONTENT_EXPORT extern const base::Feature kReloadHiddenTabsWithCrashedSubframes;
CONTENT_EXPORT extern const base::Feature kRenderDocument; CONTENT_EXPORT extern const base::Feature kRenderDocument;
CONTENT_EXPORT extern const base::Feature kRespectMacLCDTextSetting;
CONTENT_EXPORT extern const base::Feature CONTENT_EXPORT extern const base::Feature
kRunVideoCaptureServiceInBrowserProcess; kRunVideoCaptureServiceInBrowserProcess;
CONTENT_EXPORT extern const base::Feature kSavePageAsWebBundle; CONTENT_EXPORT extern const base::Feature kSavePageAsWebBundle;
......
...@@ -655,10 +655,7 @@ void RenderThreadImpl::Init() { ...@@ -655,10 +655,7 @@ void RenderThreadImpl::Init() {
#if defined(OS_ANDROID) #if defined(OS_ANDROID)
is_lcd_text_enabled_ = false; is_lcd_text_enabled_ = false;
#elif defined(OS_MAC) #elif defined(OS_MAC)
if (base::FeatureList::IsEnabled(features::kRespectMacLCDTextSetting)) is_lcd_text_enabled_ = IsSubpixelAntialiasingAvailable();
is_lcd_text_enabled_ = IsSubpixelAntialiasingAvailable();
else
is_lcd_text_enabled_ = true;
#else #else
is_lcd_text_enabled_ = true; is_lcd_text_enabled_ = true;
#endif #endif
......
...@@ -6425,21 +6425,6 @@ ...@@ -6425,21 +6425,6 @@
] ]
} }
], ],
"RespectMacLCDTextSetting": [
{
"platforms": [
"mac"
],
"experiments": [
{
"name": "Enabled",
"enable_features": [
"RespectMacLCDTextSetting"
]
}
]
}
],
"RevampedContextMenu": [ "RevampedContextMenu": [
{ {
"platforms": [ "platforms": [
......
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