summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h')
-rw-r--r--Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h b/Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h
index faa5bcd..508795a 100644
--- a/Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h
+++ b/Source/WebCore/platform/graphics/android/rendering/InstrumentedPlatformCanvas.h
@@ -36,10 +36,10 @@ namespace WebCore {
class InstrumentedPlatformCanvas : public SkCanvas {
public:
- InstrumentedPlatformCanvas(int width, int height)
+ InstrumentedPlatformCanvas(int width, int height, Color initialColor)
: m_size(width, height)
, m_isSolidColor(true)
- , m_solidColor(0, 0, 0, 0)
+ , m_solidColor(initialColor)
{
}