OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 DocumentParserTiming_h | 5 #ifndef DocumentParserTiming_h |
6 #define DocumentParserTiming_h | 6 #define DocumentParserTiming_h |
7 | 7 |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "platform/Supplementable.h" | 9 #include "platform/Supplementable.h" |
10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 explicit DocumentParserTiming(Document&); | 101 explicit DocumentParserTiming(Document&); |
102 void notifyDocumentParserTimingChanged(); | 102 void notifyDocumentParserTimingChanged(); |
103 | 103 |
104 double m_parserStart = 0.0; | 104 double m_parserStart = 0.0; |
105 double m_parserStop = 0.0; | 105 double m_parserStop = 0.0; |
106 double m_parserBlockedOnScriptLoadDuration = 0.0; | 106 double m_parserBlockedOnScriptLoadDuration = 0.0; |
107 double m_parserBlockedOnScriptLoadFromDocumentWriteDuration = 0.0; | 107 double m_parserBlockedOnScriptLoadFromDocumentWriteDuration = 0.0; |
108 double m_parserBlockedOnScriptExecutionDuration = 0.0; | 108 double m_parserBlockedOnScriptExecutionDuration = 0.0; |
109 double m_parserBlockedOnScriptExecutionFromDocumentWriteDuration = 0.0; | 109 double m_parserBlockedOnScriptExecutionFromDocumentWriteDuration = 0.0; |
110 bool m_parserDetached = false; | 110 bool m_parserDetached = false; |
111 | |
112 Member<Document> m_document; | |
113 }; | 111 }; |
114 | 112 |
115 } // namespace blink | 113 } // namespace blink |
116 | 114 |
117 #endif | 115 #endif |
OLD | NEW |