Home | History | Annotate | Download | only in WebPage

Lines Matching refs:graphicsContext

38 #include <WebCore/GraphicsContext.h>
183 OwnPtr<GraphicsContext> graphicsContext = findIndicatorTextBackingStore->createGraphicsContext();
189 graphicsContext->translate(-paintRect.x(), -paintRect.y());
193 selectedFrame->view()->paint(graphicsContext.get(), paintRect);
293 void FindController::drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const IntRect& dirtyRect)
300 graphicsContext.fillRect(dirtyRect, overlayBackgroundColor(fractionFadedIn), ColorSpaceSRGB);
302 graphicsContext.save();
303 graphicsContext.setShadow(FloatSize(shadowOffsetX, shadowOffsetY), shadowBlurRadius, holeShadowColor(fractionFadedIn), ColorSpaceSRGB);
305 graphicsContext.setFillColor(holeFillColor(fractionFadedIn), ColorSpaceSRGB);
312 graphicsContext.fillRect(whiteFrameRect);
315 graphicsContext.restore();
317 graphicsContext.setFillColor(Color::transparent, ColorSpaceSRGB);
321 graphicsContext.fillRect(rects[i]);