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

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

Issue 19582005: Rebaseline bindings tests results after r154648 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/bindings/tests/results/V8TestInterface.cpp ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp
diff --git a/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp b/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp
index cd47e0518fe056b757388f099f11c7e0aa3bce7c..0b0380d5eae3b089639b2080d33f0e7f41f4cfa8 100644
--- a/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp
+++ b/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp
@@ -66,7 +66,7 @@ template <typename T> void V8_USE(T) { }
static void aAttrGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
{
RealClass* imp = V8TestInterfaceImplementedAs::toNative(info.Holder());
- v8SetReturnValueString(info, imp->a(), info.GetIsolate(), NullStringAsEmpty);
+ v8SetReturnValueString(info, imp->a(), info.GetIsolate());
return;
}
@@ -129,7 +129,7 @@ static void func1Method(const v8::FunctionCallbackInfo<v8::Value>& args)
}
RealClass* imp = V8TestInterfaceImplementedAs::toNative(args.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, a, args[0]);
- v8SetReturnValueString(args, imp->func1(a), args.GetIsolate(), NullStringAsEmpty);
+ v8SetReturnValueString(args, imp->func1(a), args.GetIsolate());
return;
}
@@ -148,7 +148,7 @@ static void funcTestInterfaceImplementedAsParamMethod(const v8::FunctionCallback
}
RealClass* imp = V8TestInterfaceImplementedAs::toNative(args.Holder());
V8TRYCATCH_VOID(RealClass*, orange, V8TestInterfaceImplementedAs::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8TestInterfaceImplementedAs::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0);
- v8SetReturnValueString(args, imp->funcTestInterfaceImplementedAsParam(orange), args.GetIsolate(), NullStringAsEmpty);
+ v8SetReturnValueString(args, imp->funcTestInterfaceImplementedAsParam(orange), args.GetIsolate());
return;
}
« no previous file with comments | « Source/bindings/tests/results/V8TestInterface.cpp ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698