HomeSort by relevance Sort by last modified time
    Searched refs:FrameView (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.h 39 class FrameView;
  /external/chromium_org/third_party/WebKit/Source/platform/
PopupMenu.h 30 class FrameView;
  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h 47 class FrameView;
50 // Creates a dummy Page, LocalFrame, and FrameView whose clients are all no-op.
53 // To make sure the renderers are created, you need to call |frameView().layout()| after you add nodes into
56 // Since DummyPageHolder stores empty clients in it, it must outlive the Page, LocalFrame, FrameView and any other objects
68 FrameView& frameView() const;
DummyPageHolder.cpp 35 #include "core/frame/FrameView.h"
57 m_frame->setView(FrameView::create(m_frame.get(), initialViewSize));
81 FrameView& DummyPageHolder::frameView() const
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 28 #include "core/frame/FrameView.h"
90 double FrameView::s_currentFrameTimeStamp = 0.0;
91 bool FrameView::s_inPaintContents = false;
107 FrameView::FrameView(LocalFrame* frame)
114 , m_postLayoutTasksTimer(this, &FrameView::postLayoutTimerFired)
115 , m_updateWidgetsTimer(this, &FrameView::updateWidgetsTimerFired)
133 , m_didScrollTimer(this, &FrameView::didScrollTimerFired)
145 PassRefPtr<FrameView> FrameView::create(LocalFrame* frame
    [all...]
FrameView.h 59 class FrameView FINAL : public ScrollView {
64 static PassRefPtr<FrameView> create(LocalFrame*);
65 static PassRefPtr<FrameView> create(LocalFrame*, const IntSize& initialSize);
67 virtual ~FrameView();
133 // True if the FrameView is not transparent, and the base background color is opaque.
190 void postLayoutTimerFired(Timer<FrameView>*);
306 // passed around the FrameView layout methods can be true while this returns
310 // Sets the tickmarks for the FrameView, overriding the default behavior
336 explicit FrameView(LocalFrame*);
385 void updateWidgetsTimerFired(Timer<FrameView>*);
    [all...]
LocalFrame.h 50 class FrameView;
70 void setView(PassRefPtr<FrameView>);
83 FrameView* view() const;
158 RefPtr<FrameView> m_view;
189 inline FrameView* LocalFrame::view() const
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.h 46 class FrameView;
62 bool coordinatesScrollingForFrameView(FrameView*) const;
73 void frameViewHasSlowRepaintObjectsDidChange(FrameView*);
76 void frameViewFixedObjectsDidChange(FrameView*);
79 void frameViewRootLayerDidChange(FrameView*);
136 bool hasVisibleSlowRepaintViewportConstrainedObjects(FrameView*) const;
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationController.h 20 class FrameView;
41 static blink::WebScreenOrientationType computeOrientation(FrameView*);
  /external/chromium_org/third_party/WebKit/Source/web/
PopupMenuChromium.h 39 class FrameView;
59 RefPtr<WebCore::FrameView> m_frameView;
ExternalPopupMenu.h 43 class FrameView;
82 RefPtr<WebCore::FrameView> m_frameView;
ValidationMessageClientImpl.h 36 class FrameView;
54 WebCore::FrameView* currentView();
PopupContainer.h 41 class FrameView;
70 void showPopup(WebCore::FrameView*);
77 void showInRect(const WebCore::FloatQuad& controlPosition, const WebCore::IntSize& controlSize, WebCore::FrameView*, int index);
135 RefPtr<WebCore::FrameView> m_frameView;
ScrollbarGroup.h 34 class FrameView;
43 ScrollbarGroup(WebCore::FrameView*, const WebCore::IntRect& frameRect);
80 WebCore::FrameView* m_frameView;
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatcher.h 38 class FrameView;
72 RefPtr<FrameView> m_view;
  /external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.h 36 class FrameView;
78 void updatePanScrollState(FrameView*, const IntPoint& lastKnownMousePosition);
AutoscrollController.cpp 32 #include "core/frame/FrameView.h"
96 if (FrameView* view = scrollable->frame()->view()) {
205 if (FrameView* view = scrollable->frame()->view())
248 if (FrameView* view = m_autoscrollRenderer->frame()->view())
264 void AutoscrollController::updatePanScrollState(FrameView* view, const IntPoint& lastKnownMousePosition)
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp 32 #include "core/frame/FrameView.h"
44 FrameView* view = m_frame ? m_frame->view() : 0;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.h 36 class FrameView;
66 FrameView* frameView() const;
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h 49 class FrameView;
71 static PassRefPtrWillBeRawPtr<XMLDocumentParser> create(Document& document, FrameView* view)
106 explicit XMLDocumentParser(Document&, FrameView* = 0);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTraceEvents.h 16 class FrameView;
32 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollView.h 68 virtual FrameView* documentFrameView() const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.cpp 30 #include "core/frame/FrameView.h"
40 FrameView* frameView = frame->view();
41 if (!frameView)
44 return FloatPoint(frameView->scrollPosition()).scaledBy(scale);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.h 32 class FrameView;
HTMLFrameOwnerElement.cpp 29 #include "core/frame/FrameView.h"
41 typedef HashMap<RefPtr<Widget>, FrameView*> WidgetToParentMap;
63 FrameView* newParent = it->value;
81 static void moveWidgetToParentSoon(Widget* child, FrameView* parent)
206 ASSERT(document().view() == renderWidget->frameView());
207 ASSERT(renderWidget->frameView());
208 moveWidgetToParentSoon(m_widget.get(), renderWidget->frameView());
253 FrameView* view = childFrame->view();

Completed in 469 milliseconds

1 2 3 4 5