| 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 // This file defines a set of user experience metrics data recorded by | 5 // This file defines a set of user experience metrics data recorded by |
| 6 // the MetricsService. This is the unit of data that is sent to the server. | 6 // the MetricsService. This is the unit of data that is sent to the server. |
| 7 | 7 |
| 8 #ifndef COMPONENTS_METRICS_METRICS_LOG_H_ | 8 #ifndef COMPONENTS_METRICS_METRICS_LOG_H_ |
| 9 #define COMPONENTS_METRICS_METRICS_LOG_H_ | 9 #define COMPONENTS_METRICS_METRICS_LOG_H_ |
| 10 | 10 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 // is determined by the pref value. | 95 // is determined by the pref value. |
| 96 void RecordEnvironment( | 96 void RecordEnvironment( |
| 97 const std::vector<MetricsProvider*>& metrics_providers, | 97 const std::vector<MetricsProvider*>& metrics_providers, |
| 98 const std::vector<variations::ActiveGroupId>& synthetic_trials, | 98 const std::vector<variations::ActiveGroupId>& synthetic_trials, |
| 99 int64_t install_date, | 99 int64_t install_date, |
| 100 int64_t metrics_reporting_enabled_date); | 100 int64_t metrics_reporting_enabled_date); |
| 101 | 101 |
| 102 // Loads the environment proto that was saved by the last RecordEnvironment() | 102 // Loads the environment proto that was saved by the last RecordEnvironment() |
| 103 // call from prefs and clears the pref value. Returns true on success or false | 103 // call from prefs and clears the pref value. Returns true on success or false |
| 104 // if there was no saved environment in prefs or it could not be decoded. | 104 // if there was no saved environment in prefs or it could not be decoded. |
| 105 bool LoadSavedEnvironmentFromPrefs(); | 105 bool LoadSavedEnvironmentFromPrefs(std::string* app_version); |
| 106 | 106 |
| 107 // Writes application stability metrics, including stability metrics provided | 107 // Writes application stability metrics, including stability metrics provided |
| 108 // by the specified set of |metrics_providers|. The system profile portion of | 108 // by the specified set of |metrics_providers|. The system profile portion of |
| 109 // the log must have already been filled in by a call to RecordEnvironment() | 109 // the log must have already been filled in by a call to RecordEnvironment() |
| 110 // or LoadSavedEnvironmentFromPrefs(). | 110 // or LoadSavedEnvironmentFromPrefs(). |
| 111 // NOTE: Has the side-effect of clearing the stability prefs.. | 111 // NOTE: Has the side-effect of clearing the stability prefs.. |
| 112 // | 112 // |
| 113 // If this log is of type INITIAL_STABILITY_LOG, records additional info such | 113 // If this log is of type INITIAL_STABILITY_LOG, records additional info such |
| 114 // as number of incomplete shutdowns as well as extra breakpad and debugger | 114 // as number of incomplete shutdowns as well as extra breakpad and debugger |
| 115 // stats. | 115 // stats. |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 const base::TimeTicks creation_time_; | 199 const base::TimeTicks creation_time_; |
| 200 | 200 |
| 201 PrefService* local_state_; | 201 PrefService* local_state_; |
| 202 | 202 |
| 203 DISALLOW_COPY_AND_ASSIGN(MetricsLog); | 203 DISALLOW_COPY_AND_ASSIGN(MetricsLog); |
| 204 }; | 204 }; |
| 205 | 205 |
| 206 } // namespace metrics | 206 } // namespace metrics |
| 207 | 207 |
| 208 #endif // COMPONENTS_METRICS_METRICS_LOG_H_ | 208 #endif // COMPONENTS_METRICS_METRICS_LOG_H_ |
| OLD | NEW |