Chromium Code Reviews| Index: Source/core/dom/DocumentTiming.h |
| diff --git a/Source/core/dom/DocumentTiming.h b/Source/core/dom/DocumentTiming.h |
| index 6cc1a8c59966d4121ae92593dfb82e87beb41693..5c2f9ca2802092ba1e478d1a1eb0d32dacad7df6 100644 |
| --- a/Source/core/dom/DocumentTiming.h |
| +++ b/Source/core/dom/DocumentTiming.h |
| @@ -35,7 +35,7 @@ class Document; |
| class DocumentTiming final { |
| DISALLOW_ALLOCATION(); |
| public: |
| - DocumentTiming(WeakPtrWillBeRawPtr<Document>); |
| + DocumentTiming(RawPtrWillBeMember<Document>); |
|
sof
2015/08/18 19:13:48
Make this
explicit DocumentTiming(Document&);
|
| void markDomLoading(); |
| void markDomInteractive(); |
| @@ -63,7 +63,7 @@ private: |
| double m_domComplete; |
| double m_firstLayout; |
| - WeakPtrWillBeMember<Document> m_document; |
| + RawPtrWillBeMember<Document> m_document; |
| }; |
| } |