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

Unified Diff: third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo Created 3 years, 9 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/platform/probe/templates/ProbeSink.h.tmpl
diff --git a/third_party/WebKit/Source/platform/instrumentation/InstrumentingAgents_h.template b/third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl
similarity index 80%
rename from third_party/WebKit/Source/platform/instrumentation/InstrumentingAgents_h.template
rename to third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl
index ea6ce97bc45672d980987c18e389bdc49b066115..af292a0400ffdc660080b8247ea63624108cc052 100644
--- a/third_party/WebKit/Source/platform/instrumentation/InstrumentingAgents_h.template
+++ b/third_party/WebKit/Source/platform/probe/templates/ProbeSink.h.tmpl
@@ -4,10 +4,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-{% set agents_class = name + "Agents" %}
+{% set sink_class = (name | to_singular) + "Sink" %}
-#ifndef {{agents_class}}_h
-#define {{agents_class}}_h
+#ifndef {{sink_class}}_h
+#define {{sink_class}}_h
#include "platform/heap/HeapAllocator.h"
{% for define in defines %}
@@ -20,11 +20,11 @@ namespace blink {
class {{ agent | agent_name_to_class }};
{% endfor %}
-class PROBE_EXPORT {{agents_class}} : public GarbageCollected<{{agents_class}}> {
- WTF_MAKE_NONCOPYABLE({{agents_class}});
+class PROBE_EXPORT {{sink_class}} : public GarbageCollected<{{sink_class}}> {
+ WTF_MAKE_NONCOPYABLE({{sink_class}});
public:
- {{agents_class}}();
+ {{sink_class}}();
DECLARE_TRACE();
{% for agent in agents %}
@@ -47,4 +47,4 @@ class PROBE_EXPORT {{agents_class}} : public GarbageCollected<{{agents_class}}>
} // namespace blink
-#endif // !defined({{agents_class}}_h)
+#endif // !defined({{sink_class}}_h)

Powered by Google App Engine
This is Rietveld 408576698