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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp

Issue 2301993002: binding: Introduces ExceptionToPromiseScope. (Closed)
Patch Set: . Created 4 years, 3 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: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
index 217f5f3c6fa1423fbaaf6ab0756465cea410d141..f9247acf57749699e78b7ccee213be38031ccc58 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
@@ -236,6 +236,7 @@ static void secureContextWorkerExposedRuntimeEnabledAttributeAttributeSetterCall
static void secureContextMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextMethod();
}
@@ -247,6 +248,7 @@ static void secureContextMethodMethodCallback(const v8::FunctionCallbackInfo<v8:
static void secureContextRuntimeEnabledMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextRuntimeEnabledMethod();
}
@@ -258,6 +260,7 @@ static void secureContextRuntimeEnabledMethodMethodCallback(const v8::FunctionCa
static void secureContextWindowExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextWindowExposedMethod();
}
@@ -269,6 +272,7 @@ static void secureContextWindowExposedMethodMethodCallback(const v8::FunctionCal
static void secureContextWorkerExposedMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextWorkerExposedMethod();
}
@@ -280,6 +284,7 @@ static void secureContextWorkerExposedMethodMethodCallback(const v8::FunctionCal
static void secureContextWindowExposedRuntimeEnabledMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextWindowExposedRuntimeEnabledMethod();
}
@@ -291,6 +296,7 @@ static void secureContextWindowExposedRuntimeEnabledMethodMethodCallback(const v
static void secureContextWorkerExposedRuntimeEnabledMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextWorkerExposedRuntimeEnabledMethod();
}

Powered by Google App Engine
This is Rietveld 408576698