OLD | NEW |
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_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ |
6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ | 6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ |
7 | 7 |
8 namespace performance_monitor { | 8 namespace performance_monitor { |
9 | 9 |
10 // Constants which are used by the PerformanceMonitor and its related classes. | 10 // Constants which are used by the PerformanceMonitor and its related classes. |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 // Metric details | 22 // Metric details |
23 extern const char kMetricCPUUsageName[]; | 23 extern const char kMetricCPUUsageName[]; |
24 extern const char kMetricCPUUsageDescription[]; | 24 extern const char kMetricCPUUsageDescription[]; |
25 extern const char kMetricCPUUsageUnits[]; | 25 extern const char kMetricCPUUsageUnits[]; |
26 extern const double kMetricCPUUsageTickSize; | 26 extern const double kMetricCPUUsageTickSize; |
27 extern const char kMetricPrivateMemoryUsageName[]; | 27 extern const char kMetricPrivateMemoryUsageName[]; |
28 extern const char kMetricPrivateMemoryUsageDescription[]; | 28 extern const char kMetricPrivateMemoryUsageDescription[]; |
29 extern const char kMetricPrivateMemoryUsageUnits[]; | 29 extern const char kMetricPrivateMemoryUsageUnits[]; |
30 extern const double kMetricPrivateMemoryUsageTickSize; | 30 extern const double kMetricPrivateMemoryUsageTickSize; |
| 31 extern const char kMetricSharedMemoryUsageName[]; |
| 32 extern const char kMetricSharedMemoryUsageDescription[]; |
| 33 extern const char kMetricSharedMemoryUsageUnits[]; |
| 34 extern const double kMetricSharedMemoryUsageTickSize; |
31 | 35 |
32 } // namespace performance_monitor | 36 } // namespace performance_monitor |
33 | 37 |
34 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ | 38 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ |
OLD | NEW |