#include "remoting/base/service_urls.h"
#include "base/check.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "remoting/base/buildflags.h"
#if BUILDFLAG(REMOTING_INTERNAL)
#include "remoting/internal/base/service_urls.h"
#endif
#if defined(NDEBUG)
constexpr char kFtlServerEndpoint[] = "instantmessaging-pa.googleapis.com";
constexpr char kRemotingCloudEndpoint[] = "remotingcloud-pa.googleapis.com";
constexpr char kRemotingServerEndpoint[] = "remotedesktop-pa.googleapis.com";
#else
constexpr char kFtlServerEndpoint[] = …;
constexpr char kRemotingCloudEndpoint[] = …;
constexpr char kRemotingServerEndpoint[] = …;
#endif
#if !defined(NDEBUG)
constexpr char kFtlServerEndpointSwitch[] = …;
constexpr char kRemotingCloudEndpointSwitch[] = …;
constexpr char kRemotingServerEndpointSwitch[] = …;
#endif
namespace remoting {
ServiceUrls::ServiceUrls()
: … { … }
ServiceUrls::~ServiceUrls() = default;
ServiceUrls* remoting::ServiceUrls::GetInstance() { … }
}