| // Copyright 2014 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef COMPONENTS_METRICS_CLIENT_INFO_H_ |
| #define COMPONENTS_METRICS_CLIENT_INFO_H_ |
| // A data object used to pass data from outside the metrics component into the |
| // The metrics ID of this client: represented as a GUID string. |
| // The installation date: represented as an epoch time in seconds. |
| int64_t installation_date; |
| // The date on which metrics reporting was enabled: represented as an epoch |
| int64_t reporting_enabled_date; |
| #endif // COMPONENTS_METRICS_CLIENT_INFO_H_ |