blob: c1dc84d07d128d950034fd91b3a3ef694e61081a [file] [log] [blame]
// 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.
#include "extensions/common/extension_features.h"
namespace extensions {
namespace features {
// Enables the use of C++-based extension bindings (instead of JS generation).
const base::Feature kNativeCrxBindings{"NativeCrxBindings",
base::FEATURE_DISABLED_BY_DEFAULT};
// Enables new extension updater service.
const base::Feature kNewExtensionUpdaterService{
"NewExtensionUpdaterService", base::FEATURE_DISABLED_BY_DEFAULT};
// Enables splitting content script injections into multiple tasks.
// TODO(ksakamoto): Remove this feature flag in M67.
const base::Feature kYieldBetweenContentScriptRuns{
"YieldBetweenContentScriptRuns", base::FEATURE_ENABLED_BY_DEFAULT};
} // namespace features
} // namespace extensions