Home | History | Annotate | Download | only in public

Lines Matching refs:WebFrame

70 class WebFrame {
72 // Returns the number of live WebFrame objects, used for leak checking.
75 // The two functions below retrieve the WebFrame instances relating the
91 WEBKIT_API static WebFrame* frameForEnteredContext();
92 WEBKIT_API static WebFrame* frameForCurrentContext();
96 WEBKIT_API static WebFrame* fromFrameOwnerElement(const WebElement&);
151 virtual WebFrame* opener() const = 0;
154 virtual WebFrame* parent() const = 0;
157 virtual WebFrame* top() const = 0;
160 virtual WebFrame* firstChild() const = 0;
161 virtual WebFrame* lastChild() const = 0;
164 virtual WebFrame* nextSibling() const = 0;
165 virtual WebFrame* previousSibling() const = 0;
169 virtual WebFrame* traverseNext(bool wrap) const = 0;
170 virtual WebFrame* traversePrevious(bool wrap) const = 0;
173 virtual WebFrame* findChildByName(const WebString& name) const = 0;
176 virtual WebFrame* findChildByExpression(const WebString& xpath) const = 0;
368 // Reformats the WebFrame for printing. pageSize is the page size in
383 // Reformats the WebFrame for screen display.
449 // The WebFrame becomes the owner of the passed listener.
494 ~WebFrame() { }