| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 PerformanceServerTiming_h | 5 #ifndef PerformanceServerTiming_h |
| 6 #define PerformanceServerTiming_h | 6 #define PerformanceServerTiming_h |
| 7 | 7 |
| 8 #include "core/timing/PerformanceEntry.h" | 8 #include "core/timing/PerformanceEntry.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 protected: | 28 protected: |
| 29 void BuildJSONValue(V8ObjectBuilder&) const override; | 29 void BuildJSONValue(V8ObjectBuilder&) const override; |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 PerformanceServerTiming(const String& name, | 32 PerformanceServerTiming(const String& name, |
| 33 const String& metric, | 33 const String& metric, |
| 34 double duration, | 34 double duration, |
| 35 const String& description); | 35 const String& description); |
| 36 | 36 |
| 37 const String m_metric; | 37 const String metric_; |
| 38 const String m_description; | 38 const String description_; |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace blink | 41 } // namespace blink |
| 42 | 42 |
| 43 #endif // PerformanceServerTiming_h | 43 #endif // PerformanceServerTiming_h |
| OLD | NEW |