Home | History | Annotate | Download | only in public

Lines Matching defs:WebFrame

79 class WebFrame {
81 // Returns the number of live WebFrame objects, used for leak checking.
84 // The two functions below retrieve the WebFrame instances relating the
100 WEBKIT_API static WebFrame* frameForEnteredContext();
101 WEBKIT_API static WebFrame* frameForCurrentContext();
107 WEBKIT_API static WebFrame* frameForContext(v8::Handle<v8::Context>);
112 WEBKIT_API static WebFrame* fromFrameOwnerElement(const WebElement&);
178 virtual WebFrame* opener() const = 0;
185 virtual WebFrame* parent() const = 0;
188 virtual WebFrame* top() const = 0;
191 virtual WebFrame* firstChild() const = 0;
192 virtual WebFrame* lastChild() const = 0;
195 virtual WebFrame* nextSibling() const = 0;
196 virtual WebFrame* previousSibling() const = 0;
200 virtual WebFrame* traverseNext(bool wrap) const = 0;
201 virtual WebFrame* traversePrevious(bool wrap) const = 0;
204 virtual WebFrame* findChildByName(const WebString& name) const = 0;
207 virtual WebFrame* findChildByExpression(const WebString& xpath) const = 0;
366 // will, for example, be cancelled when WebFrame::stopLoading is called.
432 // Reformats the WebFrame for printing. pageSize is the page size in
455 // Reformats the WebFrame for screen display.
538 // Either way, the WebFrame becomes the owner of the passed listener.
603 ~WebFrame() { }