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 * |
11 * This library is free software; you can redistribute it and/or | 11 * This library is free software; you can redistribute it and/or |
12 * modify it under the terms of the GNU Library General Public | 12 * modify it under the terms of the GNU Library General Public |
13 * License as published by the Free Software Foundation; either | 13 * License as published by the Free Software Foundation; either |
14 * version 2 of the License, or (at your option) any later version. | 14 * version 2 of the License, or (at your option) any later version. |
15 * | 15 * |
16 * This library is distributed in the hope that it will be useful, | 16 * This library is distributed in the hope that it will be useful, |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
19 * Library General Public License for more details. | 19 * Library General Public License for more details. |
20 * | 20 * |
21 * You should have received a copy of the GNU Library General Public License | 21 * You should have received a copy of the GNU Library General Public License |
22 * along with this library; see the file COPYING.LIB. If not, write to | 22 * along with this library; see the file COPYING.LIB. If not, write to |
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
25 * | 25 * |
26 */ | 26 */ |
27 | 27 |
28 #include "sky/engine/config.h" | |
29 #include "sky/engine/core/rendering/RenderImageResource.h" | 28 #include "sky/engine/core/rendering/RenderImageResource.h" |
30 | 29 |
31 #include "sky/engine/core/rendering/RenderImage.h" | 30 #include "sky/engine/core/rendering/RenderImage.h" |
32 #include "sky/engine/core/rendering/RenderObject.h" | 31 #include "sky/engine/core/rendering/RenderObject.h" |
33 | 32 |
34 namespace blink { | 33 namespace blink { |
35 | 34 |
36 RenderImageResource::RenderImageResource() | 35 RenderImageResource::RenderImageResource() |
37 : m_renderer(0) | 36 : m_renderer(0) |
38 , m_cachedImage(0) | 37 , m_cachedImage(0) |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 { | 99 { |
101 if (!m_cachedImage) | 100 if (!m_cachedImage) |
102 return LayoutSize(); | 101 return LayoutSize(); |
103 LayoutSize size = m_cachedImage->imageSizeForRenderer(m_renderer, type); | 102 LayoutSize size = m_cachedImage->imageSizeForRenderer(m_renderer, type); |
104 if (m_renderer && m_renderer->isRenderImage()) | 103 if (m_renderer && m_renderer->isRenderImage()) |
105 size.scale(toRenderImage(m_renderer)->imageDevicePixelRatio()); | 104 size.scale(toRenderImage(m_renderer)->imageDevicePixelRatio()); |
106 return size; | 105 return size; |
107 } | 106 } |
108 | 107 |
109 } // namespace blink | 108 } // namespace blink |
OLD | NEW |