OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll <knoll@kde.org> | 2 * Copyright (C) 1999 Lars Knoll <knoll@kde.org> |
3 * Copyright (C) 1999 Antti Koivisto <koivisto@kde.org> | 3 * Copyright (C) 1999 Antti Koivisto <koivisto@kde.org> |
4 * Copyright (C) 2000 Dirk Mueller <mueller@kde.org> | 4 * Copyright (C) 2000 Dirk Mueller <mueller@kde.org> |
5 * Copyright (C) 2006 Allan Sandfeld Jensen <kde@carewolf.com> | 5 * Copyright (C) 2006 Allan Sandfeld Jensen <kde@carewolf.com> |
6 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 6 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserved. |
8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 9 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
10 * | 10 * |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 | 87 |
88 m_cachedImage->image()->resetAnimation(); | 88 m_cachedImage->image()->resetAnimation(); |
89 | 89 |
90 m_layoutObject->setShouldDoFullPaintInvalidation(); | 90 m_layoutObject->setShouldDoFullPaintInvalidation(); |
91 } | 91 } |
92 | 92 |
93 LayoutSize LayoutImageResource::imageSize(float multiplier) const | 93 LayoutSize LayoutImageResource::imageSize(float multiplier) const |
94 { | 94 { |
95 if (!m_cachedImage) | 95 if (!m_cachedImage) |
96 return LayoutSize(); | 96 return LayoutSize(); |
97 LayoutSize size = m_cachedImage->imageSizeForLayoutObject(m_layoutObject, mu ltiplier); | 97 RespectImageOrientationEnum shouldRespectImageOrientation = |
98 m_layoutObject ? m_layoutObject->shouldRespectImageOrientation() : DoNot RespectImageOrientation; | |
99 LayoutSize size = m_cachedImage->imageSize(shouldRespectImageOrientation, mu ltiplier); | |
Yoav Weiss
2015/11/24 10:29:07
This repetition of the shouldRespectImageOrientati
davve
2015/11/24 12:49:13
Having such a global function has struck my mind,
Yoav Weiss
2015/11/24 13:06:56
Can you just call shouldRespectImageOrientation()
| |
98 if (m_layoutObject && m_layoutObject->isLayoutImage() && size.width() && siz e.height()) | 100 if (m_layoutObject && m_layoutObject->isLayoutImage() && size.width() && siz e.height()) |
99 size.scale(toLayoutImage(m_layoutObject)->imageDevicePixelRatio()); | 101 size.scale(toLayoutImage(m_layoutObject)->imageDevicePixelRatio()); |
100 return size; | 102 return size; |
101 } | 103 } |
102 | 104 |
103 PassRefPtr<Image> LayoutImageResource::image(const IntSize& containerSize, float zoom) const | 105 PassRefPtr<Image> LayoutImageResource::image(const IntSize& containerSize, float zoom) const |
104 { | 106 { |
105 RefPtr<Image> image = m_cachedImage ? m_cachedImage->image() : Image::nullIm age(); | 107 RefPtr<Image> image = m_cachedImage ? m_cachedImage->image() : Image::nullIm age(); |
106 if (image->isSVGImage()) { | 108 if (image->isSVGImage()) { |
107 KURL url; | 109 KURL url; |
108 SVGImage* svgImage = toSVGImage(image.get()); | 110 SVGImage* svgImage = toSVGImage(image.get()); |
109 Node* node = m_layoutObject->node(); | 111 Node* node = m_layoutObject->node(); |
110 if (node && node->isElementNode()) { | 112 if (node && node->isElementNode()) { |
111 const AtomicString& urlString = toElement(node)->imageSourceURL(); | 113 const AtomicString& urlString = toElement(node)->imageSourceURL(); |
112 url = node->document().completeURL(urlString); | 114 url = node->document().completeURL(urlString); |
113 } | 115 } |
114 return SVGImageForContainer::create(svgImage, containerSize, zoom, url); | 116 return SVGImageForContainer::create(svgImage, containerSize, zoom, url); |
115 } | 117 } |
116 return image; | 118 return image; |
117 } | 119 } |
118 | 120 |
119 bool LayoutImageResource::maybeAnimated() const | 121 bool LayoutImageResource::maybeAnimated() const |
120 { | 122 { |
121 Image* image = m_cachedImage ? m_cachedImage->image() : Image::nullImage(); | 123 Image* image = m_cachedImage ? m_cachedImage->image() : Image::nullImage(); |
122 return image->maybeAnimated(); | 124 return image->maybeAnimated(); |
123 } | 125 } |
124 | 126 |
125 } // namespace blink | 127 } // namespace blink |
OLD | NEW |