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

Unified Diff: Source/core/loader/DocumentLoadTiming.h

Issue 1290593004: Oilpan: fix build after r200730. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698