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

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

Issue 2645813003: [Bindings] Make exported functions visible from other components (Closed)
Patch Set: . Created 3 years, 11 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/modules/V8TestInterface2Partial.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
index 842035579d4609703fd243c571e2ba91048c0e49..fdd8eb1e4ef64f3d23f7ac9df768e809d8c7ff35 100644
--- a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
@@ -45,7 +45,7 @@ static void voidMethodPartial1Method(const v8::FunctionCallbackInfo<v8::Value>&
TestInterface2Partial::voidMethodPartial1(*impl, value);
}
-void voidMethodPartial1MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
+ void voidMethodPartial1MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestInterface2PartialV8Internal::voidMethodPartial1Method(info);
}
@@ -65,7 +65,7 @@ static void voidMethodPartial2Method(const v8::FunctionCallbackInfo<v8::Value>&
TestInterface2Partial2::voidMethodPartial2(*impl, value);
}
-void voidMethodPartial2MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
+ void voidMethodPartial2MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestInterface2PartialV8Internal::voidMethodPartial2Method(info);
}

Powered by Google App Engine
This is Rietveld 408576698