component_updater_url_constants.h 661 B

1234567891011121314151617181920
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_URL_CONSTANTS_H_
  5. #define COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_URL_CONSTANTS_H_
  6. namespace component_updater {
  7. // Xml endpoints.
  8. extern const char kUpdaterDefaultUrl[];
  9. extern const char kUpdaterFallbackUrl[];
  10. // JSON endpoints.
  11. extern const char kUpdaterJSONDefaultUrl[];
  12. extern const char kUpdaterJSONFallbackUrl[];
  13. } // namespace component_updater
  14. #endif // COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_URL_CONSTANTS_H_