forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchromeos_features.cc
26 lines (18 loc) · 923 Bytes
/
chromeos_features.cc
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
// Copyright 2018 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 "chromeos/chromeos_features.h"
namespace chromeos {
namespace features {
// If enabled, the Chrome OS Settings UI will include a menu for the unified
// MultiDevice settings.
const base::Feature kEnableUnifiedMultiDeviceSettings{
"EnableUnifiedMultiDeviceSettings", base::FEATURE_DISABLED_BY_DEFAULT};
// Enable the device to setup all MultiDevice services in a single workflow.
const base::Feature kEnableUnifiedMultiDeviceSetup{
"EnableUnifiedMultiDeviceSetup", base::FEATURE_DISABLED_BY_DEFAULT};
// Enables or disables the MultiDevice API on Chrome OS.
const base::Feature kMultiDeviceApi{"MultiDeviceApi",
base::FEATURE_DISABLED_BY_DEFAULT};
} // namespace features
} // namespace chromeos