Searched defs:connectEnd (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DPerformanceResourceTiming.cpp139 double PerformanceResourceTiming::connectEnd() const function in class:blink::PerformanceResourceTiming
145 if (!m_timing || m_timing->connectEnd == 0.0 || m_didReuseConnection)
148 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_timing->connectEnd);
168 return connectEnd();
H A DPerformanceTiming.cpp176 unsigned long long PerformanceTiming::connectEnd() const function in class:blink::PerformanceTiming
186 // connectEnd will be zero when a network request is not made.
188 double connectEnd = timing->connectEnd; local
189 if (connectEnd == 0.0 || loader->response().connectionReused())
192 return monotonicTimeToIntegerMilliseconds(connectEnd);
217 return connectEnd();
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceLoadTiming.h51 timing->connectEnd = connectEnd;
71 && connectEnd == other.connectEnd
98 double connectEnd; member in class:blink::ResourceLoadTiming
118 , connectEnd(0)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPerformance.cpp114 double WebPerformance::connectEnd() const function in class:blink::WebPerformance
116 return millisecondsToSeconds(m_private->timing()->connectEnd());
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLLoadTiming.cpp114 double WebURLLoadTiming::connectEnd() const function in class:blink::WebURLLoadTiming
116 return m_private->connectEnd;
121 m_private->connectEnd = end;

Completed in 110 milliseconds