Index: Source/core/html/HTMLCanvasElement.h |
diff --git a/Source/core/html/HTMLCanvasElement.h b/Source/core/html/HTMLCanvasElement.h |
index 93df7be7d482b9f35d7adcdc5beaa641f7c6da32..f69905f834718460a6dc5091dcdfa68802aa01b9 100644 |
--- a/Source/core/html/HTMLCanvasElement.h |
+++ b/Source/core/html/HTMLCanvasElement.h |
@@ -108,8 +108,8 @@ public: |
bool isPaintable() const; |
static String toEncodingMimeType(const String& mimeType); |
- String toDataURL(const String& mimeType, const double* quality, ExceptionState&) const; |
- String toDataURL(const String& mimeType, ExceptionState& exceptionState) const { return toDataURL(mimeType, 0, exceptionState); } |
+ String toDataURL(const String& mimeType, const ScriptValue& qualityArgument, ExceptionState&) const; |
+ String toDataURL(const String& mimeType, ExceptionState& exceptionState) const { return toDataURL(mimeType, ScriptValue(), exceptionState); } |
// Used for rendering |
void didDraw(const FloatRect&); |