HomeSort by relevance Sort by last modified time
    Searched defs:frameView (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.cpp 35 #include "core/frame/FrameView.h"
78 m_frame->setView(FrameView::create(m_frame.get(), initialViewSize));
103 FrameView& DummyPageHolder::frameView() const
Internals.cpp 74 #include "core/frame/FrameView.h"
797 FrameView* frameView = document->view();
798 bool constrainsScrollingToContentEdgeOldValue = frameView->constrainsScrollingToContentEdge();
799 bool scrollbarsSuppressedOldValue = frameView->scrollbarsSuppressed();
801 frameView->setConstrainsScrollingToContentEdge(false);
802 frameView->setScrollbarsSuppressed(false);
803 frameView->setScrollOffsetFromInternals(IntPoint(x, y));
804 frameView->setScrollbarsSuppressed(scrollbarsSuppressedOldValue);
805 frameView->setConstrainsScrollingToContentEdge(constrainsScrollingToContentEdgeOldValue)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelectionTest.cpp 12 #include "core/frame/FrameView.h"
36 int layoutCount() const { return m_dummyPageHolder->frameView().layoutCount(); }
131 FrameView& frameView = dummyPageHolder().frameView();
132 IntRect frameRect = frameView.frameRect();
135 dummyPageHolder().frameView().setFrameRect(frameRect);
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.cpp 36 #include "core/frame/FrameView.h"
164 FrameView* parentFrameView = toFrameView(parentWidget);
169 // We only care about FrameView's because iframes show up as FrameViews.
173 const FrameView* frameView = toFrameView((*it).get());
175 // for this FrameView, if we can't just move on to the next object.
177 HTMLElement* element = frameView->frame().deprecatedLocalOwner();
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.h 262 FrameView* frameView() const { return frame() ? frame()->view() : 0; }
WebDevToolsAgentImpl.cpp 41 #include "core/frame/FrameView.h"
318 FrameView* frameView = page->deprecatedLocalMainFrame()->view();
319 PlatformGestureEventBuilder gestureEvent(frameView, static_cast<const WebGestureEvent&>(inputEvent));
322 m_lastPinchAnchorCss = adoptPtr(new IntPoint(frameView->scrollPosition() + gestureEvent.position()));
519 WebMouseEvent webEvent = WebMouseEventBuilder(m_webViewImpl->mainFrameImpl()->frameView(), event);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderWidget.cpp 52 frameView()->addWidget(this);
57 frameView()->removeWidget(this);
81 // though |this| will be referred in FrameView.
290 FrameView* frameView = toFrameView(widget);
292 if ((boundsChanged || frameView->needsLayout()) && frameView->frame().page())
293 frameView->layout();
RenderView.h 25 #include "core/frame/FrameView.h"
69 // The same as the FrameView's layoutHeight/layoutWidth but with null check guards.
81 FrameView* frameView() const { return m_frameView; }
186 FrameView* m_frameView;
RenderLayerScrollableArea.cpp 52 #include "core/frame/FrameView.h"
115 if (FrameView* frameView = frame->view()) {
116 frameView->removeScrollableArea(this);
132 if (FrameView* frameView = frame->view())
133 frameView->removeResizerArea(box());
216 if (box().frameView()->isInPerformLayout())
301 return view->frameView()->convertFromRenderer(box(), rect);
310 IntRect rect = view->frameView()->convertToRenderer(box(), parentRect)
    [all...]
RenderBlockFlow.cpp 35 #include "core/frame/FrameView.h"
    [all...]
RenderLayer.cpp 53 #include "core/frame/FrameView.h"
    [all...]
RenderObject.h 622 FrameView* frameView() const { return document().view(); };
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 115 FrameView* frameView = frame()->view();
118 ASSERT_TRUE(page->scrollingCoordinator()->coordinatesScrollingForFrameView(frameView));
134 FrameView* frameView = frame()->view();
137 ASSERT_TRUE(page->scrollingCoordinator()->coordinatesScrollingForFrameView(frameView));
406 FrameView* innerFrameView = toFrameView(renderWidget->widget());
450 FrameView* innerFrameView = toFrameView(renderWidget->widget());
TouchActionTest.cpp 39 #include "core/frame/FrameView.h"
254 FrameView* frameView = frame->view();
255 IntRect visibleRect = frameView->windowClipRect();
264 IntPoint docPoint(frameView->windowToContents(clientPoint));
WebViewTest.cpp 38 #include "core/frame/FrameView.h"
352 FrameView* view = m_webViewHelper.webViewImpl()->mainFrameImpl()->frameView();
441 FrameView* frameView = frame->frame()->view();
442 frameView->layout();
443 EXPECT_FALSE(frameView->layoutPending());
444 EXPECT_FALSE(frameView->needsLayout());
447 EXPECT_TRUE(frameView->layoutPending());
448 EXPECT_TRUE(frameView->needsLayout())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElementTest.cpp 14 #include "core/frame/FrameView.h"
40 int layoutCount() const { return page().frameView().layoutCount(); }
90 FrameView& frameView = page().frameView();
91 IntRect frameRect = frameView.frameRect();
94 page().frameView().setFrameRect(frameRect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
SpatialNavigation.cpp 33 #include "core/frame/FrameView.h"
285 // Get the FrameView in which |node| is (which means the current viewport if |node|
288 FrameView* frameView = node->document().view();
289 if (!frameView)
292 ASSERT(!frameView->needsLayout());
294 LayoutRect containerViewportRect = frameView->visibleContentRect();
DragController.cpp 51 #include "core/frame/FrameView.h"
219 if (RefPtr<FrameView> v = mainFrame->view()) {
356 RefPtr<FrameView> frameView = m_documentUnderMouse->view();
357 if (!frameView)
366 IntPoint point = frameView->windowToContents(dragData->clientPosition());
597 RefPtr<FrameView> viewProtector(mainFrame->view());
    [all...]
EventHandler.cpp 56 #include "core/frame/FrameView.h"
507 if (FrameView* view = m_frame->view()) {
684 FrameView* view = m_frame->view();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 35 #include "core/frame/FrameView.h"
139 FrameView* view = frameView();
284 FrameView* view = frameView();
316 FrameView* SVGImage::frameView() const
415 frame->setView(FrameView::create(frame.get()));
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.cpp 47 #include "core/frame/FrameView.h"
119 // Verify that the FrameView has been cleared as part of detaching
130 // FIXME: follow Oilpan and clear the FrameView and FrameLoader
190 // We detach the FrameView's custom scroll bars as early as
199 void LocalFrame::setView(PassRefPtr<FrameView> view)
440 RefPtr<FrameView> frameView;
442 frameView = FrameView::create(this, viewportSize);
445 frameView->setLayoutSizeFixedToFrameSize(false)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.cpp 569 FrameView* frameView = documentFrameView();
570 if (!frameView)
573 return frameView->frame().document();
576 FrameView* AXObject::documentFrameView() const
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
RenderLayerCompositor.cpp 32 #include "core/frame/FrameView.h"
189 for (Frame* child = m_renderView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {
215 for (Frame* child = m_renderView.frameView()->frame().tree().firstChild(); child; child = child->tree().nextSibling()) {
232 // FIXME: Technically we only need to do this when the FrameView's
349 if (const FrameView::ScrollableAreaSet* scrollableAreas = m_renderView.frameView()->scrollableAreas()) {
350 for (FrameView::ScrollableAreaSet::iterator it = scrollableAreas->begin(); it != scrollableAreas->end(); ++it)
432 scrollingCoordinator->frameViewRootLayerDidChange(m_renderView.frameView());
479 scrollingCoordinator->frameViewFixedObjectsDidChange(m_renderView.frameView());
508 FrameView* frameView = m_renderView.frameView()
    [all...]
CompositedLayerMapping.cpp 32 #include "core/frame/FrameView.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 34 #include "core/frame/FrameView.h"
150 FrameView* frameView = m_page->deprecatedLocalMainFrame()->view();
151 bool frameIsScrollable = frameView && frameView->isScrollable();
160 if (WebLayer* scrollingWebLayer = frameView ? toWebLayer(frameView->layerForScrolling()) : 0) {
167 scrollingWebLayer->setBounds(frameView->contentsSize());
672 bool ScrollingCoordinator::coordinatesScrollingForFrameView(FrameView* frameView) cons
    [all...]

Completed in 938 milliseconds

1 2