| Index: third_party/WebKit/Source/build/scripts/templates/ProbeSink.h.tmpl
|
| diff --git a/third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/ProbeSink.h.tmpl
|
| similarity index 89%
|
| rename from third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl
|
| rename to third_party/WebKit/Source/build/scripts/templates/ProbeSink.h.tmpl
|
| index af292a0400ffdc660080b8247ea63624108cc052..2f8ba496791a5ebec78ac4271f5a48b96c5dfffc 100644
|
| --- a/third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/ProbeSink.h.tmpl
|
| @@ -5,14 +5,12 @@
|
| // found in the LICENSE file.
|
|
|
| {% set sink_class = (name | to_singular) + "Sink" %}
|
| +{% set export_symbol = config["settings"]["export_symbol"] %}
|
|
|
| #ifndef {{sink_class}}_h
|
| #define {{sink_class}}_h
|
|
|
| #include "platform/heap/HeapAllocator.h"
|
| -{% for define in defines %}
|
| -{{define}}
|
| -{% endfor %}
|
|
|
| namespace blink {
|
|
|
| @@ -20,7 +18,7 @@ namespace blink {
|
| class {{ agent | agent_name_to_class }};
|
| {% endfor %}
|
|
|
| -class PROBE_EXPORT {{sink_class}} : public GarbageCollected<{{sink_class}}> {
|
| +class {{export_symbol}} {{sink_class}} : public GarbageCollected<{{sink_class}}> {
|
| WTF_MAKE_NONCOPYABLE({{sink_class}});
|
|
|
| public:
|
|
|