blob: 9fac875f0205858b3a5d0b5c32b1e0bbefa2c806 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// 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;
void MockOsIntegrationManager::SetProvider(base::PassKey<WebAppProvider>,
WebAppProvider& provider) {}
} // namespace web_app