Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: Source/bindings/tests/results/V8Float64Array.cpp

Issue 50073004: We don't need to pass |creationContext| to v8SetReturnValue family (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/V8Float64Array.cpp
diff --git a/Source/bindings/tests/results/V8Float64Array.cpp b/Source/bindings/tests/results/V8Float64Array.cpp
index d20265dc41d9f2e6c8235b0f4957be0530e4fa09..0501784351d66e9d73887520ec64464ce3261dd8 100644
--- a/Source/bindings/tests/results/V8Float64Array.cpp
+++ b/Source/bindings/tests/results/V8Float64Array.cpp
@@ -78,7 +78,7 @@ static void fooMethod(const v8::FunctionCallbackInfo<v8::Value>& args)
}
Float64Array* imp = V8Float64Array::toNative(args.Holder());
V8TRYCATCH_VOID(Float32Array*, array, args[0]->IsFloat32Array() ? V8Float32Array::toNative(v8::Handle<v8::Float32Array>::Cast(args[0])) : 0);
- v8SetReturnValue(args, imp->foo(array), args.Holder());
+ v8SetReturnValue(args, imp->foo(array));
}
static void fooMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& args)
« no previous file with comments | « Source/bindings/tests/results/V8Float64Array.h ('k') | Source/bindings/tests/results/V8SupportTestInterface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698