#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
bool IsRemoteOpenUrlSupported() { … }
}