url_constants.h 694 B

123456789101112131415161718192021222324
  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_METRICS_URL_CONSTANTS_H_
  5. #define COMPONENTS_METRICS_URL_CONSTANTS_H_
  6. namespace metrics {
  7. // The new metrics server's URL.
  8. extern const char kNewMetricsServerUrl[];
  9. // The HTTP fallback metrics server's URL.
  10. extern const char kNewMetricsServerUrlInsecure[];
  11. // The old metrics server's URL.
  12. extern const char kOldMetricsServerUrl[];
  13. // The default MIME type for the uploaded metrics data.
  14. extern const char kDefaultMetricsMimeType[];
  15. } // namespace metrics
  16. #endif // COMPONENTS_METRICS_URL_CONSTANTS_H_