HomeSort by relevance Sort by last modified time
    Searched refs:WebPerformance (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit/chromium/src/
WebPerformance.cpp 32 #include "WebPerformance.h"
45 void WebPerformance::reset()
50 void WebPerformance::assign(const WebPerformance& other)
55 WebNavigationType WebPerformance::navigationType() const
71 double WebPerformance::navigationStart() const
76 double WebPerformance::unloadEventEnd() const
81 double WebPerformance::redirectStart() const
86 double WebPerformance::redirectEnd() const
91 unsigned short WebPerformance::redirectCount() cons
    [all...]
WebFrameImpl.h 59 class WebPerformance;
97 virtual WebPerformance performance() const;
WebFrameImpl.cpp 142 #include "WebPerformance.h"
725 WebPerformance WebFrameImpl::performance() const
728 return WebPerformance();
730 return WebPerformance(m_frame->domWindow()->performance());
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebPerformance.h 42 class WebPerformance {
44 ~WebPerformance() { reset(); }
46 WebPerformance() { }
48 WebPerformance(const WebPerformance& p) { assign(p); }
50 WebPerformance& operator=(const WebPerformance& p)
57 WEBKIT_API void assign(const WebPerformance&);
85 WebPerformance(const WTF::PassRefPtr<WebCore::Performance>&);
86 WebPerformance& operator=(const WTF::PassRefPtr<WebCore::Performance>&)
    [all...]
WebFrame.h 61 class WebPerformance;
218 virtual WebPerformance performance() const = 0;

Completed in 364 milliseconds