Lines Matching full:frame
66 class Frame : public RefCounted<Frame> {
68 static PassRefPtr<Frame> create(Page* page, HTMLFrameOwnerElement* ownerElement, FrameLoaderClient* client)
70 return adoptRef(new Frame(page, ownerElement, client));
73 ~Frame();
100 RenderView* contentRenderer() const; // root renderer for the document contained in this frame
101 RenderPart* ownerRenderer() const; // renderer for the element that contains this frame
117 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
122 static Frame* frameForWidget(const Widget*);
131 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
165 void lifeSupportTimerFired(Timer<Frame>*);
242 bool isContentEditable() const; // if true, everything in frame is editable
336 Timer<Frame> m_lifeSupportTimer;