| 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) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2006 Allan Sandfeld Jensen (kde@carewolf.com) |
| 6 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 6 * (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 9 * Copyright (C) Research In Motion Limited 2011-2012. All rights reserved. | 9 * Copyright (C) Research In Motion Limited 2011-2012. All rights reserved. |
| 10 * | 10 * |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * | 25 * |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "sky/engine/core/rendering/RenderImage.h" | 28 #include "sky/engine/core/rendering/RenderImage.h" |
| 29 | 29 |
| 30 #include "gen/sky/core/HTMLNames.h" | 30 #include "gen/sky/core/HTMLNames.h" |
| 31 #include "sky/engine/core/editing/FrameSelection.h" | 31 #include "sky/engine/core/editing/FrameSelection.h" |
| 32 #include "sky/engine/core/fetch/ImageResource.h" | 32 #include "sky/engine/core/fetch/ImageResource.h" |
| 33 #include "sky/engine/core/fetch/ResourceLoader.h" | 33 #include "sky/engine/core/fetch/ResourceLoader.h" |
| 34 #include "sky/engine/core/frame/LocalFrame.h" | 34 #include "sky/engine/core/frame/LocalFrame.h" |
| 35 #include "sky/engine/core/html/HTMLImageElement.h" | |
| 36 #include "sky/engine/core/rendering/HitTestResult.h" | 35 #include "sky/engine/core/rendering/HitTestResult.h" |
| 37 #include "sky/engine/core/rendering/PaintInfo.h" | 36 #include "sky/engine/core/rendering/PaintInfo.h" |
| 38 #include "sky/engine/core/rendering/RenderLayer.h" | 37 #include "sky/engine/core/rendering/RenderLayer.h" |
| 39 #include "sky/engine/core/rendering/RenderView.h" | 38 #include "sky/engine/core/rendering/RenderView.h" |
| 40 #include "sky/engine/core/rendering/TextRunConstructor.h" | 39 #include "sky/engine/core/rendering/TextRunConstructor.h" |
| 41 #include "sky/engine/platform/fonts/Font.h" | 40 #include "sky/engine/platform/fonts/Font.h" |
| 42 #include "sky/engine/platform/fonts/FontCache.h" | 41 #include "sky/engine/platform/fonts/FontCache.h" |
| 43 #include "sky/engine/platform/graphics/GraphicsContext.h" | 42 #include "sky/engine/platform/graphics/GraphicsContext.h" |
| 44 #include "sky/engine/platform/graphics/GraphicsContextStateSaver.h" | 43 #include "sky/engine/platform/graphics/GraphicsContextStateSaver.h" |
| 45 | 44 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 return; | 237 return; |
| 239 } | 238 } |
| 240 } | 239 } |
| 241 | 240 |
| 242 bool RenderImage::needsPreferredWidthsRecalculation() const | 241 bool RenderImage::needsPreferredWidthsRecalculation() const |
| 243 { | 242 { |
| 244 return RenderReplaced::needsPreferredWidthsRecalculation(); | 243 return RenderReplaced::needsPreferredWidthsRecalculation(); |
| 245 } | 244 } |
| 246 | 245 |
| 247 } // namespace blink | 246 } // namespace blink |
| OLD | NEW |