From 33000c4b42157f06fc78ef83300dcaec61a69fbe Mon Sep 17 00:00:00 2001 From: Athul Iddya Date: Thu, 24 Aug 2023 14:02:05 -0700 Subject: [PATCH] feat: enable WaylandWindowDecorations by default (#39582) --- shell/browser/native_window_features.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/browser/native_window_features.cc b/shell/browser/native_window_features.cc index d4a4c85dd867..fe5b0d7b57e0 100644 --- a/shell/browser/native_window_features.cc +++ b/shell/browser/native_window_features.cc @@ -5,6 +5,6 @@ #include "shell/browser/native_window_features.h" namespace features { -const base::Feature kWaylandWindowDecorations{ - "WaylandWindowDecorations", base::FEATURE_DISABLED_BY_DEFAULT}; +const base::Feature kWaylandWindowDecorations{"WaylandWindowDecorations", + base::FEATURE_ENABLED_BY_DEFAULT}; }