blob: 83e823efbc065118afa748c76a1dfe2c48b990a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/common/features.h"
namespace content {
// Please keep features in alphabetical order.
#if BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kOnShowWithPageVisibility,
"OnShowWithPageVisibility",
base::FEATURE_DISABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kQueueNavigationsWhileWaitingForCommit,
"QueueNavigationsWhileWaitingForPendingCommit",
base::FEATURE_DISABLED_BY_DEFAULT);
// Please keep features in alphabetical order.
} // namespace content
|