• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/page/

Lines Matching defs:FrameView

58 class FrameView : public ScrollView {
63 static PassRefPtr<FrameView> create(Frame*);
64 static PassRefPtr<FrameView> create(Frame*, const IntSize& initialSize);
66 virtual ~FrameView();
101 void layoutTimerFired(Timer<FrameView>*);
170 // True if the FrameView is not transparent, and the base background color is opaque.
256 void postLayoutTimerFired(Timer<FrameView>*);
386 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
387 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
388 // FrameViews in the page cache, but FrameView::pagination() only affects the current
389 // FrameView. FrameView::pagination() will return m_pagination if it has been set. Otherwise,
445 explicit FrameView(Frame*);
516 void deferredRepaintTimerFired(Timer<FrameView>*);
523 void updateEmbeddedObjectsTimerFired(Timer<FrameView>*);
531 FrameView* parentFrameView() const;
560 Timer<FrameView> m_layoutTimer;
570 Timer<FrameView> m_postLayoutTasksTimer;
571 Timer<FrameView> m_updateEmbeddedObjectsTimer;
597 Timer<FrameView> m_deferredRepaintTimer;
666 inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)
678 inline void FrameView::incrementVisuallyNonEmptyPixelCount(const IntSize& size)
689 inline int FrameView::mapFromLayoutToCSSUnits(LayoutUnit value)
694 inline LayoutUnit FrameView::mapFromCSSToLayoutUnits(int value)
699 inline FrameView* toFrameView(Widget* widget)
702 return static_cast<FrameView*>(widget);
705 inline const FrameView* toFrameView(const Widget* widget)
708 return static_cast<const FrameView*>(widget);
712 void toFrameView(const FrameView*);