// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_THROTTLE_MANAGER_TEST_SUPPORT_H_ #define COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_THROTTLE_MANAGER_TEST_SUPPORT_H_ #include <memory> #include "base/memory/scoped_refptr.h" #include "components/sync_preferences/testing_pref_service_syncable.h" class HostContentSettingsMap; namespace content { class WebContents; } namespace subresource_filter { class SubresourceFilterProfileContext; // Sets up necessary dependencies of ContentSubresourceFilterThrottleManager for // convenience in unittests. class ThrottleManagerTestSupport { … }; } // namespace subresource_filter #endif // COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_THROTTLE_MANAGER_TEST_SUPPORT_H_