| OLD | NEW |
| 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 Loading... |
| 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(DocumentLoader& documentLoader) |
| 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 Loading... |
| 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 |
| OLD | NEW |