blob: 66e73d4b0468d4519e79b5a918b64edf0f4dbaf9 (
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
28
29
30
31
32
33
|
// Copyright 2017 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.
#ifndef EXTENSIONS_COMMON_EXTENSION_FEATURES_H_
#define EXTENSIONS_COMMON_EXTENSION_FEATURES_H_
#include "base/feature_list.h"
namespace extensions_features {
extern const base::Feature kDisablePolicyViolationExtensionsRemotely;
extern const base::Feature kDisablePotentiallyUwsExtensionsRemotely;
extern const base::Feature kSafeBrowsingCrxAllowlistShowWarnings;
extern const base::Feature kSafeBrowsingCrxAllowlistAutoDisable;
extern const base::Feature kForceWebRequestProxyForTest;
extern const base::Feature kAllowWithholdingExtensionPermissionsOnInstall;
extern const base::Feature kContentScriptsMatchOriginAsFallback;
extern const base::Feature kMv3ExtensionsSupported;
extern const base::Feature kReportKeepaliveUkm;
extern const base::Feature kStrictExtensionIsolation;
extern const base::Feature kAllowSharedArrayBuffersUnconditionally;
} // namespace extensions_features
#endif // EXTENSIONS_COMMON_EXTENSION_FEATURES_H_
|