Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: chrome/browser/performance_monitor/metric_info.h

Issue 10860017: Refactor Metrics (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed DCHECK Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/browser/performance_monitor/metric_details.h ('k') | chrome/browser/performance_monitor/metric_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698