blob: a997f17f4bc6bc2cba10a0f20ba2a87be960f1c5 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/web_applications/test/mock_os_integration_manager.h"
namespace web_app {
MockOsIntegrationManager::MockOsIntegrationManager()
: OsIntegrationManager(nullptr, nullptr, nullptr, nullptr, nullptr) {}
MockOsIntegrationManager::MockOsIntegrationManager(
std::unique_ptr<WebAppProtocolHandlerManager> protocol_handler_manager)
: OsIntegrationManager(nullptr,
nullptr,
nullptr,
std::move(protocol_handler_manager),
nullptr) {}
MockOsIntegrationManager::~MockOsIntegrationManager() = default;
} // namespace web_app