Index: Source/core/html/ImageData.cpp |
diff --git a/Source/core/html/ImageData.cpp b/Source/core/html/ImageData.cpp |
index c9254d2eb914eaaa439a927e9227c7510638400c..2df5c61af0b630a14d6ce6f149a64d911e24fae1 100644 |
--- a/Source/core/html/ImageData.cpp |
+++ b/Source/core/html/ImageData.cpp |
@@ -125,9 +125,9 @@ PassRefPtrWillBeRawPtr<ImageData> ImageData::create(DOMUint8ClampedArray* data, |
return adoptRefWillBeNoop(new ImageData(IntSize(width, height), data)); |
} |
-v8::Handle<v8::Object> ImageData::associateWithWrapper(const WrapperTypeInfo* wrapperType, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) |
+v8::Handle<v8::Object> ImageData::associateWithWrapper(v8::Isolate* isolate, const WrapperTypeInfo* wrapperType, v8::Handle<v8::Object> wrapper) |
{ |
- ScriptWrappable::associateWithWrapper(wrapperType, wrapper, isolate); |
+ ScriptWrappable::associateWithWrapper(isolate, wrapperType, wrapper); |
if (!wrapper.IsEmpty()) { |
// Create a V8 Uint8ClampedArray object. |