Chromium Code Reviews| Index: Source/core/timing/PerformanceTiming.h |
| diff --git a/Source/core/timing/PerformanceTiming.h b/Source/core/timing/PerformanceTiming.h |
| index 08315916e71ef625a460b38b473870a7a1af1a1a..7e473c3b099eded0ae301dede20e4ef114c77233 100644 |
| --- a/Source/core/timing/PerformanceTiming.h |
| +++ b/Source/core/timing/PerformanceTiming.h |
| @@ -76,7 +76,15 @@ public: |
| unsigned long long domComplete() const; |
| unsigned long long loadEventStart() const; |
| unsigned long long loadEventEnd() const; |
| + |
| + // The below are non-spec timings, for Page Load UMA metrics. |
| + |
| + // The time the first document layout is performed. |
| unsigned long long firstLayout() const; |
| + // The time the first paint operation for visible text was performed. |
| + unsigned long long firstNonBlankText() const; |
| + // Similar to firstNonBlankText, but only for text with custom fonts. |
|
kinuko
2015/09/15 05:25:08
nit: could we also comment that this may not be re
Kunihiko Sakamoto
2015/09/15 06:22:42
Done.
|
| + unsigned long long firstCustomFontText() const; |
| ScriptValue toJSONForBinding(ScriptState*) const; |