// Copyright 2022 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_PERFORMANCE_MANAGER_USER_TUNING_PROFILE_DISCARD_OPT_OUT_LIST_HELPER_H_ #define CHROME_BROWSER_PERFORMANCE_MANAGER_USER_TUNING_PROFILE_DISCARD_OPT_OUT_LIST_HELPER_H_ #include <map> #include <string> #include "components/prefs/pref_change_registrar.h" class Profile; namespace performance_manager::user_tuning { // This class observes changes to each Profile's Discard Opt Out List // preference, and updates the PageDiscardingHelper accordingly. class ProfileDiscardOptOutListHelper { … }; } // namespace performance_manager::user_tuning #endif // CHROME_BROWSER_PERFORMANCE_MANAGER_USER_TUNING_PROFILE_DISCARD_OPT_OUT_LIST_HELPER_H_