Home
last modified time | relevance | path

Searched refs:WebPerformance (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebPerformance.cpp45 void WebPerformance::reset() in reset()
50 void WebPerformance::assign(const WebPerformance& other) in assign()
55 WebNavigationType WebPerformance::navigationType() const in navigationType()
71 double WebPerformance::navigationStart() const in navigationStart()
76 double WebPerformance::unloadEventEnd() const in unloadEventEnd()
81 double WebPerformance::redirectStart() const in redirectStart()
86 double WebPerformance::redirectEnd() const in redirectEnd()
91 unsigned short WebPerformance::redirectCount() const in redirectCount()
96 double WebPerformance::fetchStart() const in fetchStart()
101 double WebPerformance::domainLookupStart() const in domainLookupStart()
[all …]
DWebRemoteFrameImpl.cpp254 WebPerformance WebRemoteFrameImpl::performance() const in performance()
257 return WebPerformance(); in performance()
DWebLocalFrameImpl.h67 class WebPerformance; variable
107 virtual WebPerformance performance() const OVERRIDE;
DWebRemoteFrameImpl.h54 virtual WebPerformance performance() const OVERRIDE;
Dweb.gypi201 'WebPerformance.cpp',
DWebLocalFrameImpl.cpp666 WebPerformance WebLocalFrameImpl::performance() const in performance()
669 return WebPerformance(); in performance()
670 return WebPerformance(&frame()->domWindow()->performance()); in performance()
Dblink_web.target.darwin-arm.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.linux-mips.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.linux-arm64.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.darwin-x86_64.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.linux-x86.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.darwin-arm64.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.linux-arm.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.darwin-x86.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.darwin-mips.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
Dblink_web.target.linux-x86_64.mk220 third_party/WebKit/Source/web/WebPerformance.cpp \
/external/chromium_org/third_party/WebKit/public/web/
DWebPerformance.h46 class WebPerformance {
48 ~WebPerformance() { reset(); } in ~WebPerformance()
50 WebPerformance() { } in WebPerformance() function
52 WebPerformance(const WebPerformance& p) { assign(p); } in WebPerformance() function
54 WebPerformance& operator=(const WebPerformance& p)
61 BLINK_EXPORT void assign(const WebPerformance&);
89 WebPerformance(const PassRefPtrWillBeRawPtr<WebCore::Performance>&);
90 WebPerformance& operator=(const PassRefPtrWillBeRawPtr<WebCore::Performance>&);
DWebFrame.h73 class WebPerformance; variable
237 virtual WebPerformance performance() const = 0;
/external/chromium_org/chrome/renderer/
Dpage_load_histograms.cc39 using blink::WebPerformance;
224 void DumpPerformanceTiming(const WebPerformance& performance, in DumpPerformanceTiming()