test_ash_web_view_factory.cc 569 B

1234567891011121314151617181920
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "ash/test/test_ash_web_view_factory.h"
  5. #include "ash/test/test_ash_web_view.h"
  6. namespace ash {
  7. TestAshWebViewFactory::TestAshWebViewFactory() = default;
  8. TestAshWebViewFactory::~TestAshWebViewFactory() = default;
  9. std::unique_ptr<AshWebView> TestAshWebViewFactory::Create(
  10. const AshWebView::InitParams& params) {
  11. return std::make_unique<TestAshWebView>(params);
  12. }
  13. } // namespace ash