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

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

Issue 2304453004: [Bindings] Expose V8 callback functions in generated code (Closed)
Patch Set: Expose call Callback functions in binding scripts 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/V8SVGTestInterface.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
index bace43323500d52113a8ed8a43d5cc14fe46ef63..90fbd9e50464c7b73f3ef6d094b738be6d508f8b 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8SVGTestInterface.cpp
@@ -55,7 +55,7 @@ static void typeAttributeGetter(const v8::FunctionCallbackInfo<v8::Value>& info)
v8SetReturnValueString(info, impl->fastGetAttribute(SVGNames::typeAttr), info.GetIsolate());
}
-static void typeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void typeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
SVGTestInterfaceV8Internal::typeAttributeGetter(info);
}
@@ -71,7 +71,7 @@ static void typeAttributeSetter(v8::Local<v8::Value> v8Value, const v8::Function
impl->setAttribute(SVGNames::typeAttr, cppValue);
}
-static void typeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
+void typeAttributeSetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
{
v8::Local<v8::Value> v8Value = info[0];
V0CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;

Powered by Google App Engine
This is Rietveld 408576698