Home
last modified time | relevance | path

Searched refs:domContentLoadedEventEnd (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentTiming.h36 , domContentLoadedEventEnd(0.0) in DocumentTiming()
44 double domContentLoadedEventEnd; member
DDocument.cpp4278 if (!m_documentTiming.domContentLoadedEventEnd) in finishedParsing()
4279 m_documentTiming.domContentLoadedEventEnd = monotonicallyIncreasingTime(); in finishedParsing()
/external/chromium_org/third_party/WebKit/Source/web/
DWebPerformance.cpp151 double WebPerformance::domContentLoadedEventEnd() const in domContentLoadedEventEnd() function in blink::WebPerformance
153 return millisecondsToSeconds(m_private->timing()->domContentLoadedEventEnd()); in domContentLoadedEventEnd()
/external/chromium_org/third_party/WebKit/Source/core/timing/
DPerformanceTiming.cpp274 unsigned long long PerformanceTiming::domContentLoadedEventEnd() const in domContentLoadedEventEnd() function in WebCore::PerformanceTiming
280 return monotonicTimeToIntegerMilliseconds(timing->domContentLoadedEventEnd); in domContentLoadedEventEnd()
DPerformanceTiming.h68 unsigned long long domContentLoadedEventEnd() const;
DPerformanceTiming.idl50 readonly attribute unsigned long long domContentLoadedEventEnd;
DPerformanceUserTiming.cpp62 map.add("domContentLoadedEventEnd", &PerformanceTiming::domContentLoadedEventEnd); in restrictedKeyMap()
/external/chromium_org/third_party/WebKit/public/web/
DWebPerformance.h79 BLINK_EXPORT double domContentLoadedEventEnd() const;
/external/chromium_org/chrome/renderer/
Dpage_load_histograms.cc221 Time::FromDoubleT(performance.domContentLoadedEventEnd()); in DumpPerformanceTiming()