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

Side by Side Diff: Source/core/loader/DocumentLoadTiming.cpp

Issue 1290683003: Remove WeakPtrs from DocumentTiming/DocumentLoadTiming (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2011 Google, Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "core/loader/DocumentLoadTiming.h" 27 #include "core/loader/DocumentLoadTiming.h"
28 28
29 #include "core/loader/DocumentLoader.h" 29 #include "core/loader/DocumentLoader.h"
30 #include "platform/TraceEvent.h" 30 #include "platform/TraceEvent.h"
31 #include "platform/weborigin/SecurityOrigin.h" 31 #include "platform/weborigin/SecurityOrigin.h"
32 #include "wtf/RawPtr.h"
32 #include "wtf/RefPtr.h" 33 #include "wtf/RefPtr.h"
33 34
34 namespace blink { 35 namespace blink {
35 36
36 DocumentLoadTiming::DocumentLoadTiming(WeakPtrWillBeRawPtr<DocumentLoader> docum entLoader) 37 DocumentLoadTiming::DocumentLoadTiming(RawPtrWillBeMember<DocumentLoader> docume ntLoader)
37 : m_referenceMonotonicTime(0.0) 38 : m_referenceMonotonicTime(0.0)
38 , m_referenceWallTime(0.0) 39 , m_referenceWallTime(0.0)
39 , m_navigationStart(0.0) 40 , m_navigationStart(0.0)
40 , m_unloadEventStart(0.0) 41 , m_unloadEventStart(0.0)
41 , m_unloadEventEnd(0.0) 42 , m_unloadEventEnd(0.0)
42 , m_redirectStart(0.0) 43 , m_redirectStart(0.0)
43 , m_redirectEnd(0.0) 44 , m_redirectEnd(0.0)
44 , m_redirectCount(0) 45 , m_redirectCount(0)
45 , m_fetchStart(0.0) 46 , m_fetchStart(0.0)
46 , m_responseEnd(0.0) 47 , m_responseEnd(0.0)
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 } 174 }
174 175
175 void DocumentLoadTiming::markRedirectEnd() 176 void DocumentLoadTiming::markRedirectEnd()
176 { 177 {
177 TRACE_EVENT_MARK("blink.user_timing", "redirectEnd"); 178 TRACE_EVENT_MARK("blink.user_timing", "redirectEnd");
178 m_redirectEnd = monotonicallyIncreasingTime(); 179 m_redirectEnd = monotonicallyIncreasingTime();
179 notifyDocumentTimingChanged(); 180 notifyDocumentTimingChanged();
180 } 181 }
181 182
182 } // namespace blink 183 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698