OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_METRICS_CLIENT_INFO_H_ | 5 #ifndef COMPONENTS_METRICS_CLIENT_INFO_H_ |
6 #define COMPONENTS_METRICS_CLIENT_INFO_H_ | 6 #define COMPONENTS_METRICS_CLIENT_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 // The metrics ID of this client: represented as a GUID string. | 22 // The metrics ID of this client: represented as a GUID string. |
23 std::string client_id; | 23 std::string client_id; |
24 | 24 |
25 // The installation date: represented as an epoch time in seconds. | 25 // The installation date: represented as an epoch time in seconds. |
26 int64 installation_date; | 26 int64 installation_date; |
27 | 27 |
28 // The date on which metrics reporting was enabled: represented as an epoch | 28 // The date on which metrics reporting was enabled: represented as an epoch |
29 // time in seconds. | 29 // time in seconds. |
30 int64 reporting_enabled_date; | 30 int64 reporting_enabled_date; |
31 | |
32 private: | |
33 DISALLOW_COPY_AND_ASSIGN(ClientInfo); | |
34 }; | 31 }; |
35 | 32 |
36 } // namespace metrics | 33 } // namespace metrics |
37 | 34 |
38 #endif // COMPONENTS_METRICS_CLIENT_INFO_H_ | 35 #endif // COMPONENTS_METRICS_CLIENT_INFO_H_ |
OLD | NEW |