| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 protected: | 72 protected: |
| 73 bool needsPreferredWidthsRecalculation() const final; | 73 bool needsPreferredWidthsRecalculation() const final; |
| 74 LayoutBox* embeddedContentBox() const final; | 74 LayoutBox* embeddedContentBox() const final; |
| 75 void computeIntrinsicRatioInformation(FloatSize& intrinsicSize, double& intr
insicRatio) const final; | 75 void computeIntrinsicRatioInformation(FloatSize& intrinsicSize, double& intr
insicRatio) const final; |
| 76 | 76 |
| 77 void imageChanged(WrappedImagePtr, const IntRect* = nullptr) override; | 77 void imageChanged(WrappedImagePtr, const IntRect* = nullptr) override; |
| 78 | 78 |
| 79 void paint(const PaintInfo&, const LayoutPoint&) final; | 79 void paint(const PaintInfo&, const LayoutPoint&) final; |
| 80 | 80 |
| 81 void layout() override; | 81 void layout() override; |
| 82 bool updateImageLoadingPriorities() final; | |
| 83 | 82 |
| 84 bool isOfType(LayoutObjectType type) const override { return type == LayoutO
bjectLayoutImage || LayoutReplaced::isOfType(type); } | 83 bool isOfType(LayoutObjectType type) const override { return type == LayoutO
bjectLayoutImage || LayoutReplaced::isOfType(type); } |
| 85 | 84 |
| 86 void willBeDestroyed() override; | 85 void willBeDestroyed() override; |
| 87 | 86 |
| 88 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; | 87 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; |
| 89 | 88 |
| 90 private: | 89 private: |
| 91 bool isImage() const override { return true; } | 90 bool isImage() const override { return true; } |
| 92 | 91 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 114 bool m_didIncrementVisuallyNonEmptyPixelCount; | 113 bool m_didIncrementVisuallyNonEmptyPixelCount; |
| 115 bool m_isGeneratedContent; | 114 bool m_isGeneratedContent; |
| 116 float m_imageDevicePixelRatio; | 115 float m_imageDevicePixelRatio; |
| 117 }; | 116 }; |
| 118 | 117 |
| 119 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage()); | 118 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutImage, isLayoutImage()); |
| 120 | 119 |
| 121 } // namespace blink | 120 } // namespace blink |
| 122 | 121 |
| 123 #endif // LayoutImage_h | 122 #endif // LayoutImage_h |
| OLD | NEW |