// 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 "chrome/common/web_components_prefs.h" #include "chrome/common/pref_names.h" #include "components/prefs/pref_registry_simple.h" namespace web_components_prefs { void RegisterProfilePrefs(PrefRegistrySimple* registry) { registry->RegisterBooleanPref(prefs::kWebComponentsV0Enabled, /*default_value=*/false); } } // namespace web_components_prefs