• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "components/metrics/url_constants.h"
6 
7 namespace metrics {
8 
9 // Chrome metrics URLs are stored internally to prevent Chromium forks from
10 // accidentally sending metrics to Google servers. The URLs can be found here:
11 // https://chrome-internal.googlesource.com/chrome/components/metrics/internal/
12 const char kNewMetricsServerUrl[] = "";
13 const char kNewMetricsServerUrlInsecure[] = "";
14 const char kOldMetricsServerUrl[] = "";
15 const char kDefaultMetricsMimeType[] = "";
16 const char kDefaultUkmServerUrl[] = "";
17 const char kUkmMimeType[] = "";
18 const char kDefaultDwaServerUrl[] = "";
19 
20 } // namespace metrics
21