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

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

Issue 2301993002: binding: Introduces ExceptionToPromiseScope. (Closed)
Patch Set: Addressed review comments (rename, empty line). 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 5064b2af23950129c14eb48dd895ae3fd50603d2..74c89ef8908a39627cf279ce685705e007935a85 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
@@ -237,6 +237,7 @@ void secureContextWorkerExposedRuntimeEnabledAttributeAttributeSetterCallback(co
static void secureContextMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
TestInterfaceSecureContext* impl = V8TestInterfaceSecureContext::toImpl(info.Holder());
+
impl->secureContextMethod();
}
@@ -248,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();
}
@@ -259,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();
}
@@ -270,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();
}
@@ -281,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();
}
@@ -292,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