| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) | 4 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) |
| 5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights
reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 virtual void paint(PaintInfo&, const LayoutPoint&) override final; | 61 virtual void paint(PaintInfo&, const LayoutPoint&) override final; |
| 62 virtual void layout() override; | 62 virtual void layout() override; |
| 63 | 63 |
| 64 virtual const char* renderName() const override { return "RenderImage"; } | 64 virtual const char* renderName() const override { return "RenderImage"; } |
| 65 | 65 |
| 66 virtual bool isImage() const override { return true; } | 66 virtual bool isImage() const override { return true; } |
| 67 virtual bool isRenderImage() const override final { return true; } | 67 virtual bool isRenderImage() const override final { return true; } |
| 68 | 68 |
| 69 virtual void paintReplaced(PaintInfo&, const LayoutPoint&) override; | 69 virtual void paintReplaced(PaintInfo&, const LayoutPoint&) override; |
| 70 | 70 |
| 71 virtual bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect,
unsigned maxDepthToTest) const override final; | |
| 72 virtual bool computeBackgroundIsKnownToBeObscured() override final; | |
| 73 | |
| 74 virtual LayoutUnit minimumReplacedHeight() const override; | 71 virtual LayoutUnit minimumReplacedHeight() const override; |
| 75 | 72 |
| 76 virtual void notifyFinished(Resource*) override final; | |
| 77 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) override final; | 73 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) override final; |
| 78 | 74 |
| 79 virtual bool boxShadowShouldBeAppliedToBackground(BackgroundBleedAvoidance,
InlineFlowBox*) const override final; | |
| 80 | |
| 81 void updateIntrinsicSizeIfNeeded(const LayoutSize& newSize); | 75 void updateIntrinsicSizeIfNeeded(const LayoutSize& newSize); |
| 82 // Update the size of the image to be rendered. Object-fit may cause this to
be different from the CSS box's content rect. | 76 // Update the size of the image to be rendered. Object-fit may cause this to
be different from the CSS box's content rect. |
| 83 void updateInnerContentRect(); | 77 void updateInnerContentRect(); |
| 84 | 78 |
| 85 void paintAreaElementFocusRing(PaintInfo&); | 79 void paintAreaElementFocusRing(PaintInfo&); |
| 86 | 80 |
| 87 OwnPtr<RenderImageResource> m_imageResource; | 81 OwnPtr<RenderImageResource> m_imageResource; |
| 88 float m_imageDevicePixelRatio; | 82 float m_imageDevicePixelRatio; |
| 89 | 83 |
| 90 friend class RenderImageScaleObserver; | 84 friend class RenderImageScaleObserver; |
| 91 }; | 85 }; |
| 92 | 86 |
| 93 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderImage, isRenderImage()); | 87 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderImage, isRenderImage()); |
| 94 | 88 |
| 95 } // namespace blink | 89 } // namespace blink |
| 96 | 90 |
| 97 #endif // SKY_ENGINE_CORE_RENDERING_RENDERIMAGE_H_ | 91 #endif // SKY_ENGINE_CORE_RENDERING_RENDERIMAGE_H_ |
| OLD | NEW |