// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/companion/core/companion_permission_utils.h" #include "chrome/browser/companion/core/features.h" #include "components/prefs/pref_service.h" #include "components/unified_consent/pref_names.h" #include "components/unified_consent/url_keyed_data_collection_consent_helper.h" namespace companion { bool IsUserPermittedToSharePageURLWithCompanion(PrefService* pref_service) { … } bool IsUserPermittedToSharePageContentWithCompanion(PrefService* pref_service) { … } } // namespace companion