blob: bbe1b07aa4a2ed7dca6b5166008b419b33dff2a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/display/display_features.h"
namespace display {
namespace features {
#if defined(OS_CHROMEOS)
// Enables using HDR transfer function if the monitor says it supports it.
const base::Feature kUseHDRTransferFunction{"UseHDRTransferFunction",
base::FEATURE_DISABLED_BY_DEFAULT};
#endif
// This features allows listing all display modes of external displays in the
// display settings and setting any one of them exactly as requested, which can
// be very useful for debugging and development purposes.
const base::Feature kListAllDisplayModes = {"ListAllDisplayModes",
base::FEATURE_ENABLED_BY_DEFAULT};
bool IsListAllDisplayModesEnabled() {
return base::FeatureList::IsEnabled(kListAllDisplayModes);
}
} // namespace features
} // namespace display
|