blob: 71fdd92887d3fade1d7a5fe5893e5794f9390964 [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 "remoting/host/remote_open_url/url_forwarder_configurator.h"
#include "build/build_config.h"
namespace remoting {
UrlForwarderConfigurator::UrlForwarderConfigurator() = default;
UrlForwarderConfigurator::~UrlForwarderConfigurator() = default;
#if !BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_WIN)
// static
std::unique_ptr<UrlForwarderConfigurator> UrlForwarderConfigurator::Create() {
// Unsupported platforms. Use NOTIMPLEMENTED() instead of NOTREACHED() since
// some unit tests still attempt to create the configurator.
NOTIMPLEMENTED();
return nullptr;
}
#endif // !BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_WIN)
} // namespace remoting