| Index: Source/core/platform/graphics/BitmapImage.cpp
|
| diff --git a/Source/core/platform/graphics/BitmapImage.cpp b/Source/core/platform/graphics/BitmapImage.cpp
|
| index 85601f0daa96350a79b07e6744e7720e7b918fbd..5a1f9cca7d737899d20c395ba201133857d98fa0 100644
|
| --- a/Source/core/platform/graphics/BitmapImage.cpp
|
| +++ b/Source/core/platform/graphics/BitmapImage.cpp
|
| @@ -33,11 +33,11 @@
|
| #include "core/platform/graphics/GraphicsContextStateSaver.h"
|
| #include "core/platform/graphics/ImageObserver.h"
|
| #include "core/platform/graphics/skia/SkiaUtils.h"
|
| -#include <wtf/CurrentTime.h>
|
| -#include <wtf/MemoryInstrumentationVector.h>
|
| -#include <wtf/MemoryObjectInfo.h>
|
| -#include <wtf/text/WTFString.h>
|
| -#include <wtf/Vector.h>
|
| +#include "wtf/CurrentTime.h"
|
| +#include "wtf/MemoryInstrumentationVector.h"
|
| +#include "wtf/MemoryObjectInfo.h"
|
| +#include "wtf/Vector.h"
|
| +#include "wtf/text/WTFString.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -286,12 +286,12 @@ String BitmapImage::filenameExtension() const
|
| return m_source.filenameExtension();
|
| }
|
|
|
| -void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace colorSpace, CompositeOperator compositeOp, BlendMode blendMode)
|
| +void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode)
|
| {
|
| - draw(ctxt, dstRect, srcRect, colorSpace, compositeOp, blendMode, DoNotRespectImageOrientation);
|
| + draw(ctxt, dstRect, srcRect, compositeOp, blendMode, DoNotRespectImageOrientation);
|
| }
|
|
|
| -void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace colorSpace, CompositeOperator compositeOp, BlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
|
| +void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, BlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
|
| {
|
| // Spin the animation to the correct frame before we try to draw it, so we
|
| // don't draw an old frame and then immediately need to draw a newer one,
|
|
|