OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2012 Intel Inc. All rights reserved. | 3 * Copyright (C) 2012 Intel Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 : PerformanceEntry(info.initialRequest().url().string(), "resource", monoton
icTimeToDocumentMilliseconds(requestingDocument, startTime), monotonicTimeToDocu
mentMilliseconds(requestingDocument, info.loadFinishTime())) | 51 : PerformanceEntry(info.initialRequest().url().string(), "resource", monoton
icTimeToDocumentMilliseconds(requestingDocument, startTime), monotonicTimeToDocu
mentMilliseconds(requestingDocument, info.loadFinishTime())) |
52 , m_initiatorType(info.initiatorType()) | 52 , m_initiatorType(info.initiatorType()) |
53 , m_timing(info.finalResponse().resourceLoadTiming()) | 53 , m_timing(info.finalResponse().resourceLoadTiming()) |
54 , m_lastRedirectEndTime(lastRedirectEndTime) | 54 , m_lastRedirectEndTime(lastRedirectEndTime) |
55 , m_finishTime(info.loadFinishTime()) | 55 , m_finishTime(info.loadFinishTime()) |
56 , m_didReuseConnection(info.finalResponse().connectionReused()) | 56 , m_didReuseConnection(info.finalResponse().connectionReused()) |
57 , m_allowTimingDetails(allowTimingDetails) | 57 , m_allowTimingDetails(allowTimingDetails) |
58 , m_allowRedirectDetails(allowRedirectDetails) | 58 , m_allowRedirectDetails(allowRedirectDetails) |
59 , m_requestingDocument(requestingDocument) | 59 , m_requestingDocument(requestingDocument) |
60 { | 60 { |
61 ScriptWrappable::init(this); | |
62 } | 61 } |
63 | 62 |
64 PerformanceResourceTiming::~PerformanceResourceTiming() | 63 PerformanceResourceTiming::~PerformanceResourceTiming() |
65 { | 64 { |
66 } | 65 } |
67 | 66 |
68 AtomicString PerformanceResourceTiming::initiatorType() const | 67 AtomicString PerformanceResourceTiming::initiatorType() const |
69 { | 68 { |
70 return m_initiatorType; | 69 return m_initiatorType; |
71 } | 70 } |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_fin
ishTime); | 190 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_fin
ishTime); |
192 } | 191 } |
193 | 192 |
194 void PerformanceResourceTiming::trace(Visitor* visitor) | 193 void PerformanceResourceTiming::trace(Visitor* visitor) |
195 { | 194 { |
196 visitor->trace(m_requestingDocument); | 195 visitor->trace(m_requestingDocument); |
197 PerformanceEntry::trace(visitor); | 196 PerformanceEntry::trace(visitor); |
198 } | 197 } |
199 | 198 |
200 } // namespace blink | 199 } // namespace blink |
OLD | NEW |