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

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPerformanceResourceTiming.cpp140 double PerformanceResourceTiming::connectEnd() const function in class:WebCore::PerformanceResourceTiming
146 if (!m_timing || m_timing->connectEnd == 0.0 || m_didReuseConnection)
149 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_timing->connectEnd);
169 return connectEnd();
H A DPerformanceTiming.cpp177 unsigned long long PerformanceTiming::connectEnd() const function in class:WebCore::PerformanceTiming
187 // connectEnd will be zero when a network request is not made.
189 double connectEnd = timing->connectEnd; local
190 if (connectEnd == 0.0 || loader->response().connectionReused())
193 return monotonicTimeToIntegerMilliseconds(connectEnd);
218 return connectEnd();
/external/chromium_org/third_party/WebKit/Source/core/platform/network/
H A DResourceLoadTiming.h53 timing->connectEnd = connectEnd;
70 && connectEnd == other.connectEnd
94 double connectEnd; member in class:WebCore::ResourceLoadTiming
111 , connectEnd(0)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPerformance.cpp116 double WebPerformance::connectEnd() const function in class:WebKit::WebPerformance
118 return millisecondsToSeconds(m_private->timing()->connectEnd());
H A DWebURLLoadTiming.cpp116 double WebURLLoadTiming::connectEnd() const function in class:WebKit::WebURLLoadTiming
118 return m_private->connectEnd;
123 m_private->connectEnd = end;

Completed in 166 milliseconds