Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentTiming.h35 , domContentLoadedEventStart(0.0) in DocumentTiming()
43 double domContentLoadedEventStart; member
DDocument.cpp4275 if (!m_documentTiming.domContentLoadedEventStart) in finishedParsing()
4276 m_documentTiming.domContentLoadedEventStart = monotonicallyIncreasingTime(); in finishedParsing()
/external/chromium_org/third_party/WebKit/Source/web/
DWebPerformance.cpp146 double WebPerformance::domContentLoadedEventStart() const in domContentLoadedEventStart() function in blink::WebPerformance
148 return millisecondsToSeconds(m_private->timing()->domContentLoadedEventStart()); in domContentLoadedEventStart()
/external/chromium_org/third_party/WebKit/Source/core/timing/
DPerformanceTiming.cpp265 unsigned long long PerformanceTiming::domContentLoadedEventStart() const in domContentLoadedEventStart() function in WebCore::PerformanceTiming
271 return monotonicTimeToIntegerMilliseconds(timing->domContentLoadedEventStart); in domContentLoadedEventStart()
DPerformanceTiming.h67 unsigned long long domContentLoadedEventStart() const;
DPerformanceTiming.idl49 readonly attribute unsigned long long domContentLoadedEventStart;
DPerformanceUserTiming.cpp61 map.add("domContentLoadedEventStart", &PerformanceTiming::domContentLoadedEventStart); in restrictedKeyMap()
/external/chromium_org/third_party/WebKit/public/web/
DWebPerformance.h78 BLINK_EXPORT double domContentLoadedEventStart() const;
/external/chromium_org/chrome/renderer/
Dpage_load_histograms.cc219 Time::FromDoubleT(performance.domContentLoadedEventStart()); in DumpPerformanceTiming()