Home | History | Annotate | Download | only in page

Lines Matching refs:Frame

82     class Frame : public RefCounted<Frame>, public TiledBackingStoreClient {
84 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
92 ~Frame();
121 RenderView* contentRenderer() const; // Root of the render tree for the document contained in this frame.
122 RenderPart* ownerRenderer() const; // Renderer for the element that contains this frame.
126 // ======== All public functions below this point are candidates to move out of Frame into another class. ========
145 static Frame* frameForWidget(const Widget*);
155 void keepAlive(); // Used to keep the frame alive when running a script that might destroy it.
210 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
213 void lifeSupportTimerFired(Timer<Frame>*);
240 Timer<Frame> m_lifeSupportTimer;
261 // FIXME: The tiled backing store belongs in FrameView, not Frame.
280 inline void Frame::init()
285 inline FrameLoader* Frame::loader() const
290 inline NavigationScheduler* Frame::navigationScheduler() const
295 inline FrameView* Frame::view() const
300 inline ScriptController* Frame::script()
305 inline Document* Frame::document() const
310 inline SelectionController* Frame::selection() const
315 inline Editor* Frame::editor() const
320 inline AnimationController* Frame::animation() const
325 inline HTMLFrameOwnerElement* Frame::ownerElement() const
330 inline bool Frame::isDisconnected() const
335 inline void Frame::setIsDisconnected(bool isDisconnected)
340 inline bool Frame::excludeFromTextSearch() const
345 inline void Frame::setExcludeFromTextSearch(bool exclude)
350 inline bool Frame::inViewSourceMode() const
355 inline void Frame::setInViewSourceMode(bool mode)
360 inline FrameTree* Frame::tree() const
365 inline Page* Frame::page() const
370 inline void Frame::detachFromPage()
375 inline EventHandler* Frame::eventHandler() const