chromium/remoting/host/remote_open_url/remote_open_url_util.cc

// 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 "remoting/host/remote_open_url/remote_open_url_util.h"

#include "base/logging.h"
#include "build/build_config.h"

#if BUILDFLAG(IS_WIN)
#include "base/win/registry.h"
#include "base/win/windows_types.h"
#endif

namespace remoting {

#if BUILDFLAG(IS_WIN)

#if defined(OFFICIAL_BUILD)
const wchar_t kUrlForwarderRegisteredAppName[] =
    L"Chrome Remote Desktop URL Forwarder";
#else
const wchar_t kUrlForwarderRegisteredAppName[] = L"Chromoting URL Forwarder";
#endif

const wchar_t kRegisteredApplicationsKeyName[] =
    L"SOFTWARE\\RegisteredApplications";

#endif  // BUILDFLAG(IS_WIN)

bool IsRemoteOpenUrlSupported() {}

}  // namespace remoting