// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_BASE_SERVICE_URLS_H_ #define REMOTING_BASE_SERVICE_URLS_H_ #include <string> #include "base/memory/singleton.h" namespace remoting { // This class contains the URLs to the services used by the host (except for // Gaia, which has its own GaiaUrls class. In debug builds, it allows these URLs // to be overriden by command line switches, allowing the host process to be // pointed at alternate/test servers. class ServiceUrls { … }; } // namespace remoting #endif // REMOTING_BASE_SERVICE_URLS_H_