Lines Matching refs:WebFrameProxy
55 class WebFrameProxy : public APIObject {
59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID) in create()
61 return adoptRef(new WebFrameProxy(page, frameID)); in create()
64 virtual ~WebFrameProxy();
75 WebFrameProxy* parentFrame() { return m_parentFrame; } in parentFrame()
76 WebFrameProxy* nextSibling() { return m_nextSibling; } in nextSibling()
77 WebFrameProxy* previousSibling() { return m_previousSibling; } in previousSibling()
78 WebFrameProxy* firstChild() { return m_firstChild; } in firstChild()
79 WebFrameProxy* lastChild() { return m_lastChild; } in lastChild()
124 void appendChild(WebFrameProxy*);
125 void removeChild(WebFrameProxy*);
128 bool isDescendantOf(const WebFrameProxy* ancestor) const;
137 WebFrameProxy(WebPageProxy* page, uint64_t frameID);
142 WebFrameProxy* m_parentFrame;
143 WebFrameProxy* m_nextSibling;
144 WebFrameProxy* m_previousSibling;
145 WebFrameProxy* m_firstChild;
146 WebFrameProxy* m_lastChild;