Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: third_party/WebKit/Source/core/dom/DocumentParserTiming.h

Issue 2617103002: Use a new Supplement constructor for Supplement<Document> (Part 1) (Closed)
Patch Set: temp Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentParserTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698