// 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. #include "components/safe_browsing/core/browser/test_safe_browsing_token_fetcher.h" namespace safe_browsing { TestSafeBrowsingTokenFetcher::TestSafeBrowsingTokenFetcher() = default; TestSafeBrowsingTokenFetcher::~TestSafeBrowsingTokenFetcher() { … } void TestSafeBrowsingTokenFetcher::Start(Callback callback) { … } void TestSafeBrowsingTokenFetcher::RunAccessTokenCallback(std::string token) { … } bool TestSafeBrowsingTokenFetcher::WasStartCalled() { … } } // namespace safe_browsing