| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_ | |
| 6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/time.h" | |
| 11 | |
| 12 namespace performance_monitor { | |
| 13 | |
| 14 struct MetricInfo { | |
| 15 MetricInfo(); | |
| 16 MetricInfo(const base::Time& metric_time, double metric_value); | |
| 17 MetricInfo(const std::string& metric_time, const std::string& metric_value); | |
| 18 ~MetricInfo(); | |
| 19 | |
| 20 base::Time time; | |
| 21 double value; | |
| 22 }; | |
| 23 | |
| 24 } // namespace performance_monitor | |
| 25 | |
| 26 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_ | |
| OLD | NEW |