Searched defs:layoutSize (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageScaleConstraints.h39 FloatSize layoutSize; member in struct:blink::PageScaleConstraints
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DHTMLCanvasPainter.cpp36 LayoutSize layoutSize = contentRect.size(); local
38 && (layoutSize.width() > canvas->width() || layoutSize.height() > canvas->height() || layoutSize == canvas->size())) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.cpp68 InterpolationQuality ImageQualityController::chooseInterpolationQuality(GraphicsContext* context, RenderObject* object, Image* image, const void* layer, const LayoutSize& layoutSize) argument
72 && (layoutSize.width() > image->width() || layoutSize.height() > image->height() || layoutSize == image->size())) {
79 if (shouldPaintAtLowQuality(context, object, image, layer, layoutSize))
156 bool ImageQualityController::shouldPaintAtLowQuality(GraphicsContext* context, RenderObject* object, Image* image, const void *layer, const LayoutSize& layoutSize) argument
185 LayoutSize scaledLayoutSize = currentTransform.mapSize(roundedIntSize(layoutSize));
H A DTextAutosizer.cpp516 IntSize layoutSize = mainFrame->view()->layoutSize(); local
517 m_pageInfo.m_layoutWidth = horizontalWritingMode ? layoutSize.width() : layoutSize.height();
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp843 if (!m_firstLayout && m_size.height() != layoutSize().height() && body->renderer()->enclosingBox()->stretchesToViewport())
865 m_lastViewportSize = layoutSize(IncludeScrollbars);
883 m_size = LayoutSize(layoutSize().width(), layoutSize().height());
930 updateOverflowStatus(layoutSize().width() < contentsWidth(), layoutSize().height() < contentsHeight());
1493 IntSize FrameView::layoutSize(IncludeScrollbarsInRect scrollbarInclusion) const function in class:blink::FrameView
2057 return (layoutSize(IncludeScrollbars) != m_lastViewportSize || renderView->style()->zoom() != m_lastZoomFactor);
2071 m_lastViewportSize = layoutSize(IncludeScrollbars);

Completed in 283 milliseconds