| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 2 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/platform/graphics/Image.h" | 28 #include "core/platform/graphics/Image.h" |
| 29 | 29 |
| 30 #include "core/platform/Length.h" | 30 #include "core/platform/Length.h" |
| 31 #include "core/platform/MIMETypeRegistry.h" | 31 #include "core/platform/MIMETypeRegistry.h" |
| 32 #include "platform/SharedBuffer.h" | 32 #include "platform/SharedBuffer.h" |
| 33 #include "core/platform/chromium/TraceEvent.h" | 33 #include "core/platform/chromium/TraceEvent.h" |
| 34 #include "core/platform/graphics/BitmapImage.h" | 34 #include "core/platform/graphics/BitmapImage.h" |
| 35 #include "core/platform/graphics/FloatPoint.h" | |
| 36 #include "core/platform/graphics/FloatRect.h" | |
| 37 #include "core/platform/graphics/FloatSize.h" | |
| 38 #include "core/platform/graphics/GraphicsContext.h" | 35 #include "core/platform/graphics/GraphicsContext.h" |
| 39 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 36 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
| 40 #include "core/platform/graphics/GraphicsTypes.h" | 37 #include "core/platform/graphics/GraphicsTypes.h" |
| 41 #include "core/platform/graphics/IntRect.h" | 38 #include "platform/geometry/FloatPoint.h" |
| 39 #include "platform/geometry/FloatRect.h" |
| 40 #include "platform/geometry/FloatSize.h" |
| 41 #include "platform/geometry/IntRect.h" |
| 42 #include "public/platform/Platform.h" | 42 #include "public/platform/Platform.h" |
| 43 #include "public/platform/WebData.h" | 43 #include "public/platform/WebData.h" |
| 44 #include "wtf/MainThread.h" | 44 #include "wtf/MainThread.h" |
| 45 #include "wtf/StdLibExtras.h" | 45 #include "wtf/StdLibExtras.h" |
| 46 | 46 |
| 47 #include <math.h> | 47 #include <math.h> |
| 48 | 48 |
| 49 namespace WebCore { | 49 namespace WebCore { |
| 50 | 50 |
| 51 Image::Image(ImageObserver* observer) | 51 Image::Image(ImageObserver* observer) |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 } | 232 } |
| 233 | 233 |
| 234 void Image::computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsic
Height, FloatSize& intrinsicRatio) | 234 void Image::computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsic
Height, FloatSize& intrinsicRatio) |
| 235 { | 235 { |
| 236 intrinsicRatio = size(); | 236 intrinsicRatio = size(); |
| 237 intrinsicWidth = Length(intrinsicRatio.width(), Fixed); | 237 intrinsicWidth = Length(intrinsicRatio.width(), Fixed); |
| 238 intrinsicHeight = Length(intrinsicRatio.height(), Fixed); | 238 intrinsicHeight = Length(intrinsicRatio.height(), Fixed); |
| 239 } | 239 } |
| 240 | 240 |
| 241 } | 241 } |
| OLD | NEW |