// Copyright 2012 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_EXTENSIONS_TEST_BLOCKLIST_H_ #define CHROME_BROWSER_EXTENSIONS_TEST_BLOCKLIST_H_ #include <map> #include <string> #include "base/memory/raw_ptr.h" #include "chrome/browser/extensions/blocklist.h" #include "chrome/browser/extensions/blocklist_state_fetcher.h" #include "chrome/browser/extensions/scoped_database_manager_for_test.h" namespace extensions { class FakeSafeBrowsingDatabaseManager; // Replace BlocklistStateFetcher for testing of the Boacklist class. class BlocklistStateFetcherMock : public BlocklistStateFetcher { … }; // A wrapper for an extensions::Blocklist that provides functionality for // testing. It sets up mocks for SafeBrowsing database and BlocklistFetcher, // that are used by blocklist to retrieve respectively the set of blocklisted // extensions and their blocklist states. class TestBlocklist { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_TEST_BLOCKLIST_H_