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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp

Issue 2430223006: Bindings: Rebaseline run-bindings-tests results (Closed)
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
index 30fd286df4841fcb87ec40339480bce81bcd7d3c..f2d09da38987082e400479dc6570454ab6181b16 100644
--- a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
@@ -167,8 +167,7 @@ static void staticVoidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo
static void promiseMethodPartialOverload3Method(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(info.GetIsolate(), ExceptionState::ExecutionContext, "TestInterface", "promiseMethodPartialOverload");
- ScriptState* scriptState = ScriptState::forReceiverObject(info);
- ExceptionToRejectPromiseScope rejectPromiseScope(info, scriptState, exceptionState);
+ ExceptionToRejectPromiseScope rejectPromiseScope(info, exceptionState);
TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
@@ -200,8 +199,7 @@ static void promiseMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8
}
ExceptionState exceptionState(info.GetIsolate(), ExceptionState::ExecutionContext, "TestInterface", "promiseMethodPartialOverload");
- ScriptState* scriptState = ScriptState::forReceiverObject(info);
- ExceptionToRejectPromiseScope rejectPromiseScope(info, scriptState, exceptionState);
+ ExceptionToRejectPromiseScope rejectPromiseScope(info, exceptionState);
if (isArityError) {
}
@@ -211,8 +209,7 @@ static void promiseMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8
static void staticPromiseMethodPartialOverload2Method(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(info.GetIsolate(), ExceptionState::ExecutionContext, "TestInterface", "staticPromiseMethodPartialOverload");
- ScriptState* scriptState = ScriptState::forFunctionObject(info);
- ExceptionToRejectPromiseScope rejectPromiseScope(info, scriptState, exceptionState);
+ ExceptionToRejectPromiseScope rejectPromiseScope(info, exceptionState);
V8StringResource<> value;
value = info[0];
@@ -239,8 +236,7 @@ static void staticPromiseMethodPartialOverloadMethod(const v8::FunctionCallbackI
}
ExceptionState exceptionState(info.GetIsolate(), ExceptionState::ExecutionContext, "TestInterface", "staticPromiseMethodPartialOverload");
- ScriptState* scriptState = ScriptState::forReceiverObject(info);
- ExceptionToRejectPromiseScope rejectPromiseScope(info, scriptState, exceptionState);
+ ExceptionToRejectPromiseScope rejectPromiseScope(info, exceptionState);
if (isArityError) {
}
@@ -327,7 +323,7 @@ static void partialVoidTestEnumModulesArgMethodMethod(const v8::FunctionCallback
TestInterfacePartial3Implementation::partialVoidTestEnumModulesArgMethod(*impl, arg);
}
-static void partialVoidTestEnumModulesArgMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void partialVoidTestEnumModulesArgMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceImplementationPartialV8Internal::partialVoidTestEnumModulesArgMethodMethod(info);
}
@@ -372,7 +368,7 @@ static void unscopableVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>
TestInterfacePartial3Implementation::unscopableVoidMethod(*impl);
}
-static void unscopableVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void unscopableVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceImplementationPartialV8Internal::unscopableVoidMethodMethod(info);
}
@@ -384,7 +380,7 @@ static void partial4VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>&
TestInterfacePartial4::partial4VoidMethod(*impl);
}
-static void partial4VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void partial4VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceImplementationPartialV8Internal::partial4VoidMethodMethod(info);
}
@@ -394,7 +390,7 @@ static void partial4StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Va
TestInterfacePartial4::partial4StaticVoidMethod();
}
-static void partial4StaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void partial4StaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceImplementationPartialV8Internal::partial4StaticVoidMethodMethod(info);
}
« no previous file with comments | « third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698