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

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

Issue 10656052: Performance monitor stats gathering. (Closed) Base URL: http://git.chromium.org/chromium/src.git@cpm_main
Patch Set: Created 8 years, 5 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_ 5 #ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_
6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_ 6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace performance_monitor { 10 namespace performance_monitor {
11 11
12 enum MetricType { 12 enum MetricType {
13 METRIC_SAMPLE, 13 METRIC_CPU_USAGE,
14 METRIC_PRIVATE_MEMORY_USAGE,
15 METRIC_SHARED_MEMORY_USAGE,
14 METRIC_NUMBER_OF_METRICS 16 METRIC_NUMBER_OF_METRICS
15 }; 17 };
16 18
17 const char* MetricTypeToString(MetricType event_type); 19 const char* MetricTypeToString(MetricType event_type);
18 20
19 struct MetricDetails { 21 struct MetricDetails {
20 MetricDetails(); 22 MetricDetails();
21 MetricDetails(const std::string& metric_name, 23 MetricDetails(const std::string& metric_name,
22 const std::string& metric_description); 24 const std::string& metric_description);
23 ~MetricDetails(); 25 ~MetricDetails();
24 26
25 std::string name; 27 std::string name;
26 std::string description; 28 std::string description;
27 }; 29 };
28 30
29 } // namespace performance_monitor 31 } // namespace performance_monitor
30 32
31 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_ 33 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_DETAILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698