Index: Source/WebCore/bindings/v8/V8MutationCallback.cpp |
=================================================================== |
--- Source/WebCore/bindings/v8/V8MutationCallback.cpp (revision 141118) |
+++ Source/WebCore/bindings/v8/V8MutationCallback.cpp (working copy) |
@@ -63,7 +63,7 @@ |
v8::Local<v8::Array> mutationsArray = v8::Array::New(mutations->size()); |
for (size_t i = 0; i < mutations->size(); ++i) |
- mutationsArray->Set(v8Integer(i, v8Context->GetIsolate()), toV8(mutations->at(i).get(), v8::Handle<v8::Object>(), v8Context->GetIsolate())); |
+ mutationsArray->Set(deprecatedV8Integer(i), toV8(mutations->at(i).get(), v8::Handle<v8::Object>(), v8Context->GetIsolate())); |
v8::Handle<v8::Value> observerHandle = toV8(observer, v8::Handle<v8::Object>(), v8Context->GetIsolate()); |
if (observerHandle.IsEmpty()) { |