#include "chrome/browser/extensions/test_blocklist_state_fetcher.h"
#include "base/containers/contains.h"
#include "components/safe_browsing/core/browser/db/v4_test_util.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/mojom/url_loader.mojom.h"
namespace extensions {
namespace {
class DummySharedURLLoaderFactory : public network::SharedURLLoaderFactory { … };
}
TestBlocklistStateFetcher::TestBlocklistStateFetcher(
BlocklistStateFetcher* fetcher)
: … { … }
TestBlocklistStateFetcher::~TestBlocklistStateFetcher() { … }
void TestBlocklistStateFetcher::SetBlocklistVerdict(
const std::string& id,
ClientCRXListInfoResponse_Verdict state) { … }
bool TestBlocklistStateFetcher::HandleFetcher(const std::string& id) { … }
}