chromium/chrome/browser/web_applications/isolated_web_apps/test/isolated_web_app_fake_response_reader_factory.h

// Copyright 2023 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_WEB_APPLICATIONS_ISOLATED_WEB_APPS_TEST_ISOLATED_WEB_APP_FAKE_RESPONSE_READER_FACTORY_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_TEST_ISOLATED_WEB_APP_FAKE_RESPONSE_READER_FACTORY_H_

#include "base/files/file_path.h"
#include "base/functional/callback.h"
#include "base/types/expected.h"
#include "chrome/browser/web_applications/isolated_web_apps/isolated_web_app_response_reader.h"
#include "chrome/browser/web_applications/isolated_web_apps/isolated_web_app_response_reader_factory.h"
#include "chrome/browser/web_applications/isolated_web_apps/signed_web_bundle_reader.h"

class Profile;

namespace web_app {

class MockIsolatedWebAppResponseReader : public IsolatedWebAppResponseReader {};

class FakeResponseReaderFactory : public IsolatedWebAppResponseReaderFactory {};

}  // namespace web_app

#endif  // CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_TEST_ISOLATED_WEB_APP_FAKE_RESPONSE_READER_FACTORY_H_