| 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 27 matching lines...) Expand all Loading... |
| 38 extern const char kMetricTestStartupTimeName[]; | 38 extern const char kMetricTestStartupTimeName[]; |
| 39 extern const char kMetricTestStartupTimeDescription[]; | 39 extern const char kMetricTestStartupTimeDescription[]; |
| 40 extern const char kMetricTestStartupTimeUnits[]; | 40 extern const char kMetricTestStartupTimeUnits[]; |
| 41 extern const double kMetricTestStartupTimeTickSize; | 41 extern const double kMetricTestStartupTimeTickSize; |
| 42 | 42 |
| 43 extern const char kMetricSessionRestoreTimeName[]; | 43 extern const char kMetricSessionRestoreTimeName[]; |
| 44 extern const char kMetricSessionRestoreTimeDescription[]; | 44 extern const char kMetricSessionRestoreTimeDescription[]; |
| 45 extern const char kMetricSessionRestoreTimeUnits[]; | 45 extern const char kMetricSessionRestoreTimeUnits[]; |
| 46 extern const double kMetricSessionRestoreTimeTickSize; | 46 extern const double kMetricSessionRestoreTimeTickSize; |
| 47 | 47 |
| 48 extern const char kMetricPageLoadTimeName[]; |
| 49 extern const char kMetricPageLoadTimeDescription[]; |
| 50 extern const char kMetricPageLoadTimeUnits[]; |
| 51 extern const double kMetricPageLoadTimeTickSize; |
| 52 |
| 48 } // namespace performance_monitor | 53 } // namespace performance_monitor |
| 49 | 54 |
| 50 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ | 55 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_CONSTANTS_H_ |
| OLD | NEW |