// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_PRIVACY_BUDGET_PRIVACY_BUDGET_UKM_ENTRY_FILTER_H_ #define CHROME_BROWSER_PRIVACY_BUDGET_PRIVACY_BUDGET_UKM_ENTRY_FILTER_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/privacy_budget/identifiability_study_state.h" #include "components/ukm/ukm_entry_filter.h" // A ukm::UkmEntryFilter that enforces the current identifiability study state. // // Doesn't affect any other kind of UKM event other than Identifiability events. class PrivacyBudgetUkmEntryFilter : public ukm::UkmEntryFilter { … }; #endif // CHROME_BROWSER_PRIVACY_BUDGET_PRIVACY_BUDGET_UKM_ENTRY_FILTER_H_