summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--WebCore/platform/graphics/android/ImageBufferAndroid.cpp3
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp6
2 files changed, 5 insertions, 4 deletions
diff --git a/WebCore/platform/graphics/android/ImageBufferAndroid.cpp b/WebCore/platform/graphics/android/ImageBufferAndroid.cpp
index 3b89777..2f9e543 100644
--- a/WebCore/platform/graphics/android/ImageBufferAndroid.cpp
+++ b/WebCore/platform/graphics/android/ImageBufferAndroid.cpp
@@ -28,6 +28,7 @@
#include "Base64.h"
#include "BitmapImage.h"
+#include "ColorSpace.h"
#include "ImageData.h"
#include "GraphicsContext.h"
#include "NotImplemented.h"
@@ -49,7 +50,7 @@ ImageBufferData::ImageBufferData(const IntSize&)
{
}
-ImageBuffer::ImageBuffer(const IntSize& size, ImageColorSpace colorSpace, bool& success)
+ImageBuffer::ImageBuffer(const IntSize& size, ColorSpace, bool& success)
: m_data(size)
, m_size(size)
{
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
index a796084..1903f2e 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.cpp
@@ -1065,7 +1065,7 @@ public:
ctx->save();
ctx->clip(frameRect());
- ctx->setFillColor(Color::white, DeviceColorSpace);
+ ctx->setFillColor(Color::white, ColorSpaceDeviceRGB);
ctx->fillRect(frameRect());
if (frameRect().contains(imageRect)) {
// Leave a 2 pixel padding.
@@ -1073,12 +1073,12 @@ public:
IntRect innerRect = frameRect();
innerRect.inflate(-pixelWidth);
// Draw a 2 pixel light gray border.
- ctx->setStrokeColor(Color::lightGray, DeviceColorSpace);
+ ctx->setStrokeColor(Color::lightGray, ColorSpaceDeviceRGB);
ctx->strokeRect(innerRect, pixelWidth);
}
// Draw the image in the center
- ctx->drawImage(image.get(), DeviceColorSpace, imageRect.location());
+ ctx->drawImage(image.get(), ColorSpaceDeviceRGB, imageRect.location());
ctx->restore();
}