OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 PaintTiming_h | 5 #ifndef PaintTiming_h |
6 #define PaintTiming_h | 6 #define PaintTiming_h |
7 | 7 |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "core/paint/FirstMeaningfulPaintDetector.h" | 9 #include "core/paint/FirstMeaningfulPaintDetector.h" |
10 #include "platform/Supplementable.h" | 10 #include "platform/Supplementable.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 // markFirstTextPaint, markFirstImagePaint, and markFirstContentfulPaint | 37 // markFirstTextPaint, markFirstImagePaint, and markFirstContentfulPaint |
38 // will also record first paint if first paint hasn't been recorded yet. | 38 // will also record first paint if first paint hasn't been recorded yet. |
39 void markFirstContentfulPaint(); | 39 void markFirstContentfulPaint(); |
40 | 40 |
41 // markFirstTextPaint and markFirstImagePaint will also record first | 41 // markFirstTextPaint and markFirstImagePaint will also record first |
42 // contentful paint if first contentful paint hasn't been recorded yet. | 42 // contentful paint if first contentful paint hasn't been recorded yet. |
43 void markFirstTextPaint(); | 43 void markFirstTextPaint(); |
44 void markFirstImagePaint(); | 44 void markFirstImagePaint(); |
45 | 45 |
| 46 void markFirstMeaningfulPaintCandidate(); |
46 void setFirstMeaningfulPaint(double stamp); | 47 void setFirstMeaningfulPaint(double stamp); |
47 void notifyPaint(bool isFirstPaint, bool textPainted, bool imagePainted); | 48 void notifyPaint(bool isFirstPaint, bool textPainted, bool imagePainted); |
48 | 49 |
49 // The getters below return monotonically-increasing seconds, or zero if the | 50 // The getters below return monotonically-increasing seconds, or zero if the |
50 // given paint event has not yet occurred. See the comments for | 51 // given paint event has not yet occurred. See the comments for |
51 // monotonicallyIncreasingTime in wtf/CurrentTime.h for additional details. | 52 // monotonicallyIncreasingTime in wtf/CurrentTime.h for additional details. |
52 | 53 |
53 // firstPaint returns the first time that anything was painted for the | 54 // firstPaint returns the first time that anything was painted for the |
54 // current document. | 55 // current document. |
55 double firstPaint() const { return m_firstPaint; } | 56 double firstPaint() const { return m_firstPaint; } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 double m_firstContentfulPaint = 0.0; | 100 double m_firstContentfulPaint = 0.0; |
100 double m_firstMeaningfulPaint = 0.0; | 101 double m_firstMeaningfulPaint = 0.0; |
101 | 102 |
102 Member<Document> m_document; | 103 Member<Document> m_document; |
103 Member<FirstMeaningfulPaintDetector> m_fmpDetector; | 104 Member<FirstMeaningfulPaintDetector> m_fmpDetector; |
104 }; | 105 }; |
105 | 106 |
106 } // namespace blink | 107 } // namespace blink |
107 | 108 |
108 #endif | 109 #endif |
OLD | NEW |