| Index: Source/core/dom/DocumentTiming.h
|
| diff --git a/Source/core/dom/DocumentTiming.h b/Source/core/dom/DocumentTiming.h
|
| index 6cc1a8c59966d4121ae92593dfb82e87beb41693..034eb1aff6aa50f8b9542aa68f2ae0710c9cfe82 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>);
|
| + 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;
|
| };
|
|
|
| }
|
|
|