Searched refs:rootFrame (Results 1 - 4 of 4) sorted by path

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageAnimator.cpp77 void PageAnimator::updateLayoutAndStyleForPainting(LocalFrame* rootFrame) argument
79 RefPtr<FrameView> view = rootFrame->view();
H A DPageAnimator.h24 void updateLayoutAndStyleForPainting(LocalFrame* rootFrame);
/external/chromium_org/third_party/WebKit/Source/web/
H A DPageWidgetDelegate.cpp50 static inline FrameView* rootFrameView(Page* page, LocalFrame* rootFrame) argument
52 if (rootFrame)
53 return rootFrame->view();
61 void PageWidgetDelegate::animate(Page* page, double monotonicFrameBeginTime, LocalFrame* rootFrame) argument
63 RefPtr<FrameView> view = rootFrameView(page, rootFrame);
70 void PageWidgetDelegate::layout(Page* page, LocalFrame* rootFrame) argument
75 if (!rootFrame) {
78 rootFrame = toLocalFrame(page->mainFrame());
81 page->animator().updateLayoutAndStyleForPainting(rootFrame);
84 void PageWidgetDelegate::paint(Page* page, PageOverlayList* overlays, WebCanvas* canvas, const WebRect& rect, CanvasBackground background, LocalFrame* rootFrame) argument
106 handleInputEvent(Page* page, PageWidgetEventHandler& handler, const WebInputEvent& event, LocalFrame* rootFrame) argument
[all...]
H A DPageWidgetDelegate.h72 // rootFrame arguments indicate a root localFrame from which to start performing the
73 // specified operation. If rootFrame is 0, these methods will attempt to use the
75 static void animate(Page*, double monotonicFrameBeginTime, LocalFrame* rootFrame = 0);
76 static void layout(Page*, LocalFrame* rootFrame = 0);
77 static void paint(Page*, PageOverlayList*, WebCanvas*, const WebRect&, CanvasBackground, LocalFrame* rootFrame = 0);
78 static bool handleInputEvent(Page*, PageWidgetEventHandler&, const WebInputEvent&, LocalFrame* rootFrame = 0);

Completed in 261 milliseconds