Index: Source/core/loader/DocumentLoadTiming.h |
diff --git a/Source/core/loader/DocumentLoadTiming.h b/Source/core/loader/DocumentLoadTiming.h |
index a63f9df39f510f45acac5b2267bbcb69db6b95f4..f5d461b4ef33e2298ab9a0300aa97108430ebb5c 100644 |
--- a/Source/core/loader/DocumentLoadTiming.h |
+++ b/Source/core/loader/DocumentLoadTiming.h |
@@ -36,7 +36,8 @@ namespace blink { |
class DocumentLoader; |
class KURL; |
-class CORE_EXPORT DocumentLoadTiming { |
+class CORE_EXPORT DocumentLoadTiming final { |
+ DISALLOW_ALLOCATION(); |
public: |
DocumentLoadTiming(WeakPtrWillBeRawPtr<DocumentLoader>); |
@@ -72,6 +73,8 @@ public: |
double referenceMonotonicTime() const { return m_referenceMonotonicTime; } |
+ DECLARE_TRACE(); |
+ |
private: |
void setRedirectStart(double); |
void markRedirectEnd(); |
@@ -92,7 +95,7 @@ private: |
bool m_hasCrossOriginRedirect; |
bool m_hasSameOriginAsPreviousDocument; |
- WeakPtrWillBeRawPtr<DocumentLoader> m_documentLoader; |
+ WeakPtrWillBeMember<DocumentLoader> m_documentLoader; |
haraken
2015/08/19 00:00:20
Ditto.
|
}; |
} // namespace blink |