2015-08-04 23:04:51 +02:00
|
|
|
//
|
|
|
|
// Copyright (C) 2015 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef METRICS_CONSTANTS_H_
|
|
|
|
#define METRICS_CONSTANTS_H_
|
|
|
|
|
|
|
|
namespace metrics {
|
|
|
|
static const char kMetricsDirectory[] = "/data/misc/metrics/";
|
2015-09-09 19:38:20 +02:00
|
|
|
static const char kMetricsEventsFileName[] = "uma-events";
|
|
|
|
static const char kMetricsGUIDFileName[] = "Sysinfo.GUID";
|
2015-08-20 19:40:55 +02:00
|
|
|
static const char kMetricsServer[] = "https://clients4.google.com/uma/v2";
|
2015-09-09 19:38:20 +02:00
|
|
|
static const char kConsentFileName[] = "enabled";
|
2015-09-09 19:39:51 +02:00
|
|
|
static const char kStagedLogName[] = "staged_log";
|
|
|
|
static const char kFailedUploadCountName[] = "failed_upload_count";
|
2015-08-04 23:12:10 +02:00
|
|
|
static const char kDefaultVersion[] = "0.0.0.0";
|
2015-08-20 23:08:41 +02:00
|
|
|
|
2015-10-14 22:26:42 +02:00
|
|
|
// Build time properties name.
|
|
|
|
static const char kProductId[] = "product_id";
|
|
|
|
static const char kProductVersion[] = "product_version";
|
2015-08-04 23:04:51 +02:00
|
|
|
} // namespace metrics
|
|
|
|
|
|
|
|
#endif // METRICS_CONSTANTS_H_
|