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

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

Issue 2301993002: binding: Introduces ExceptionToPromiseScope. (Closed)
Patch Set: Removed throwMinimumArityError family. 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 c7d5a19b0647d3b07cab3ec3222625a63f2b3f9d..74c89ef8908a39627cf279ce685705e007935a85 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
@@ -7,6 +7,7 @@
#include "V8TestInterfaceSecureContext.h"
#include "bindings/core/v8/ExceptionState.h"
+#include "bindings/core/v8/GeneratedCodeHelper.h"
#include "bindings/core/v8/V8DOMConfiguration.h"
#include "bindings/core/v8/V8ObjectConstructor.h"
#include "core/dom/Document.h"
@@ -236,6 +237,7 @@ void secureContextWorkerExposedRuntimeEnabledAttributeAttributeSetterCallback(co
static void secureContextMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextMethod();
}
@@ -247,6 +249,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 +261,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 +273,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 +285,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 +297,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