#ifndef ASH_TEST_TEST_ASH_WEB_VIEW_FACTORY_H_
#define ASH_TEST_TEST_ASH_WEB_VIEW_FACTORY_H_
#include <memory>
#include "ash/public/cpp/ash_web_view_factory.h"
namespace ash {
class TestAshWebViewFactory : public AshWebViewFactory {
public:
TestAshWebViewFactory();
TestAshWebViewFactory(const TestAshWebViewFactory& copy) = delete;
TestAshWebViewFactory& operator=(const TestAshWebViewFactory& assign) =
delete;
~TestAshWebViewFactory() override;
std::unique_ptr<AshWebView> Create(
const AshWebView::InitParams& params) override;
};
}
#endif