/external/chromium_org/third_party/WebKit/Source/core/testing/ |
Internals.cpp | 73 #include "core/frame/FrameView.h" 877 FrameView* frameView = document->view(); 878 bool constrainsScrollingToContentEdgeOldValue = frameView->constrainsScrollingToContentEdge(); 879 bool scrollbarsSuppressedOldValue = frameView->scrollbarsSuppressed(); 881 frameView->setConstrainsScrollingToContentEdge(false); 882 frameView->setScrollbarsSuppressed(false); 883 frameView->setScrollOffsetFromInternals(IntPoint(x, y)); 884 frameView->setScrollbarsSuppressed(scrollbarsSuppressedOldValue); 885 frameView->setConstrainsScrollingToContentEdge(constrainsScrollingToContentEdgeOldValue) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderListBox.cpp | 40 #include "core/frame/FrameView.h" 95 if (FrameView* frameView = frame()->view()) 96 frameView->addScrollableArea(this); 103 if (FrameView* frameView = frame()->view()) 104 frameView->removeScrollableArea(this); 678 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled() && frameView()->isInPerformLayout()) 780 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled() && frameView()->isInPerformLayout()) { 808 return view->frameView()->convertFromRenderer(*this, rect) [all...] |
RenderBox.cpp | 33 #include "core/frame/FrameView.h" 439 static inline bool frameElementAndViewPermitScroll(HTMLFrameElementBase* frameElementBase, FrameView* frameView) 446 if (frameView->wasScrolledByUser()) 451 Page* page = frameView->frame().page(); 476 if (FrameView* frameView = this->frameView()) { 485 if (frameElementAndViewPermitScroll(frameElementBase, frameView)) { 486 LayoutRect viewRect = frameView->visibleContentRect() [all...] |
RenderTreeAsText.cpp | 33 #include "core/frame/FrameView.h" 486 FrameView* view = toFrameView(widget);
|
RenderView.cpp | 92 frameView()->updateLayoutAndStyleIfNeededRecursive(); 142 FrameView* frameView = document().view(); 143 int scrollTop = frameView->scrollOffset().height(); 144 int visibleHeight = frameView->visibleContentRect(IncludeScrollbars).height(); 349 rects.append(LayoutRect(LayoutPoint::zero(), frameView()->contentsSize())); 409 frameView()->setCannotBlitToWindow(); 414 frameView()->setCannotBlitToWindow(); 438 if (frameView()->isTransparent()) // FIXME: This needs to be dynamic. We should be able to go back to blitting if we ever stop being transparent. 439 frameView()->setCannotBlitToWindow(); // The parent must show behind the child [all...] |
RenderObject.h | 581 FrameView* frameView() const { return document().view(); }; [all...] |
RenderObject.cpp | 41 #include "core/frame/FrameView.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPluginContainerImpl.cpp | 56 #include "core/frame/FrameView.h" 107 // See comment in FrameView::updateControlTints(). 391 FrameView* parentFrameView = toFrameView(parentWidget); 686 // We cache the parent FrameView here as the plugin widget could be deleted 688 FrameView* parentView = toFrameView(parent());
|
WebDevToolsAgentImpl.cpp | 41 #include "core/frame/FrameView.h" 319 FrameView* frameView = page->deprecatedLocalMainFrame()->view(); 320 PlatformGestureEventBuilder gestureEvent(frameView, *static_cast<const WebGestureEvent*>(&inputEvent)); 323 m_lastPinchAnchorCss = adoptPtr(new WebCore::IntPoint(frameView->scrollPosition() + gestureEvent.position())); 604 WebMouseEvent webEvent = WebMouseEventBuilder(m_webViewImpl->mainFrameImpl()->frameView(), event);
|
WebInputEventConversion.cpp | 42 #include "core/frame/FrameView.h" 83 FrameView* rootView = toFrameView(widget->root());
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Element.cpp | 77 #include "core/frame/FrameView.h" 603 if (FrameView* view = document().view()) { 624 if (FrameView* view = document().view()) { 649 if (FrameView* view = document().view()) { 672 if (FrameView* view = document().view()) { 698 FrameView* view = frame->view(); 744 FrameView* view = frame->view(); 793 FrameView* view = document().view(); [all...] |
TreeScope.cpp | 41 #include "core/frame/FrameView.h" 236 FrameView* frameView = frame->view(); 237 if (!frameView) 241 IntPoint point = roundedIntPoint(FloatPoint(x * scaleFactor + frameView->scrollX(), y * scaleFactor + frameView->scrollY())); 243 if (!frameView->visibleContentRect().contains(point))
|
Document.h | 108 class FrameView; 460 FrameView* view() const; // can be null [all...] |
Document.cpp | 114 #include "core/frame/FrameView.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXRenderObject.cpp | 485 FrameView* view = m_renderer->frame()->view(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorLayerTreeAgent.cpp | 193 // Should only happen for FrameView paints when compositing is off. Consider different instrumentation method for that. 230 FrameView* childFrameView = toFrameView(toRenderWidget(root->renderer())->widget());
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGSVGElement.cpp | 38 #include "core/frame/FrameView.h" 515 if (FrameView* view = document().view()) { 529 // but many things in FrameView and SVGImage depend on the RenderSVGRoot when
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
FrameLoader.cpp | 53 #include "core/frame/FrameView.h" 394 // Null-checking the FrameView indicates whether or not we're in the destructor. [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebFrameTest.cpp | 49 #include "core/frame/FrameView.h" 678 EXPECT_TRUE(webViewHelper.webViewImpl()->mainFrameImpl()->frameView()->needsLayout()); 680 int prevLayoutCount = webViewHelper.webViewImpl()->mainFrameImpl()->frameView()->layoutCount(); 681 webViewHelper.webViewImpl()->mainFrameImpl()->frameView()->setFrameRect(WebCore::IntRect(0, 0, 641, 481)); 682 EXPECT_EQ(prevLayoutCount, webViewHelper.webViewImpl()->mainFrameImpl()->frameView()->layoutCount()); 757 WebCore::FrameView* frameView = webViewHelper.webViewImpl()->mainFrameImpl()->frameView(); 773 frameView->setFrameRect(WebCore::IntRect(0, 0, 200, 200)); [all...] |
WebViewTest.cpp | 36 #include "core/frame/FrameView.h" 294 WebCore::FrameView* view = m_webViewHelper.webViewImpl()->mainFrameImpl()->frameView(); 383 WebCore::FrameView* frameView = frame->frame()->view(); 384 frameView->layout(); 385 EXPECT_FALSE(frameView->layoutPending()); 386 EXPECT_FALSE(frameView->needsLayout()); 389 EXPECT_TRUE(frameView->layoutPending()); 390 EXPECT_TRUE(frameView->needsLayout()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLFormElement.cpp | 355 FrameView* view = document().view();
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
FocusController.cpp | 44 #include "core/frame/FrameView.h" 726 if (FrameView* view = m_page->deprecatedLocalMainFrame()->view()) [all...] |
SpatialNavigation.cpp | 33 #include "core/frame/FrameView.h" 287 // Get the FrameView in which |node| is (which means the current viewport if |node| 290 FrameView* frameView = node->document().view(); 291 if (!frameView) 294 ASSERT(!frameView->needsLayout()); 296 LayoutRect containerViewportRect = frameView->visibleContentRect();
|
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/ |
XMLDocumentParser.cpp | 750 XMLDocumentParser::XMLDocumentParser(Document& document, FrameView* frameView) 752 , m_hasView(frameView) 770 if (frameView && document.isXMLDocument()) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.cpp | 76 #include "core/frame/FrameView.h" 140 FrameView* view = document.view(); [all...] |