blob: 0f4c58c1a4656396b6092ecc433d30c3b51bbaf4 [file] [log] [blame]
ivansham1fbce452015-02-18 23:27:091// 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
5#ifndef COMPONENTS_METRICS_URL_CONSTANTS_H_
6#define COMPONENTS_METRICS_URL_CONSTANTS_H_
7
8namespace metrics {
9
asvitkinecfe64422017-04-24 16:27:5110// The new metrics server's URL.
11extern const char kNewMetricsServerUrl[];
12
Carlos IL75b352f2017-11-07 01:43:0213// The HTTP fallback metrics server's URL.
14extern const char kNewMetricsServerUrlInsecure[];
15
asvitkinecfe64422017-04-24 16:27:5116// The old metrics server's URL.
17extern const char kOldMetricsServerUrl[];
ivansham1fbce452015-02-18 23:27:0918
19// The default MIME type for the uploaded metrics data.
20extern const char kDefaultMetricsMimeType[];
21
22} // namespace metrics
23
24#endif // COMPONENTS_METRICS_URL_CONSTANTS_H_