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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestException.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/core/V8TestException.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
index ec12c7d576f79c3462126c0c85ad76e679e26f98..c5181c742a0ee13750529ceb234e9c9b11d1da85 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestException.cpp
@@ -61,7 +61,7 @@ static void readonlyUnsignedShortAttributeAttributeGetter(const v8::FunctionCall
v8SetReturnValueUnsigned(info, impl->readonlyUnsignedShortAttribute());
}
-void readonlyUnsignedShortAttributeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
+CORE_EXPORT void readonlyUnsignedShortAttributeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestExceptionV8Internal::readonlyUnsignedShortAttributeAttributeGetter(info);
}
@@ -73,7 +73,7 @@ static void readonlyStringAttributeAttributeGetter(const v8::FunctionCallbackInf
v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate());
}
-void readonlyStringAttributeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
+CORE_EXPORT void readonlyStringAttributeAttributeGetterCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestExceptionV8Internal::readonlyStringAttributeAttributeGetter(info);
}
@@ -83,7 +83,7 @@ static void toStringMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
v8SetReturnValueString(info, impl->toString(), info.GetIsolate());
}
-void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
+CORE_EXPORT void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
TestExceptionV8Internal::toStringMethod(info);
}

Powered by Google App Engine
This is Rietveld 408576698