HomeSort by relevance Sort by last modified time
    Searched defs:dnsEnd (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceLoadTiming.h 51 timing->dnsEnd = dnsEnd;
68 && dnsEnd == other.dnsEnd
92 double dnsEnd;
109 , dnsEnd(0)
  /external/chromium_org/third_party/WebKit/Source/core/page/
PerformanceTiming.cpp 146 double dnsEnd = timing->dnsEnd;
147 if (dnsEnd == 0.0)
150 return monotonicTimeToIntegerMilliseconds(dnsEnd);
171 if (timing->dnsEnd > 0.0 && timing->dnsEnd > connectStart)
172 connectStart = timing->dnsEnd;
  /external/chromium_org/third_party/WebKit/Source/web/
WebURLLoadTiming.cpp 96 double WebURLLoadTiming::dnsEnd() const
98 return m_private->dnsEnd;
103 m_private->dnsEnd = end;

Completed in 217 milliseconds