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

Unified Diff: tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h

Issue 2578103003: Add use-chromium-style-naming option to Blink GC plugin. (Closed)
Patch Set: Rebase Created 4 years 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: tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h
diff --git a/tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h b/tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h
index a19a5363ca4dc3bcf9bb937364f70300c286c32c..0a5a7c749835a650b3c7e449f13e57539f268fd3 100644
--- a/tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h
+++ b/tools/clang/blink_gc_plugin/tests/trace_after_dispatch.h
@@ -11,8 +11,8 @@ namespace blink {
class A : public GarbageCollected<A> {
public:
- void trace(Visitor*);
- void traceAfterDispatch(Visitor*);
+ void Trace(Visitor*);
+ void TraceAfterDispatch(Visitor*);
protected:
enum Type { TB, TC, TD };
A(Type type) : m_type(type) { }
@@ -23,7 +23,7 @@ private:
class B : public A {
public:
B() : A(TB) { }
- void traceAfterDispatch(Visitor*);
+ void TraceAfterDispatch(Visitor*);
private:
Member<A> m_a;
};
@@ -31,7 +31,7 @@ private:
class C : public A {
public:
C() : A(TC) { }
- void traceAfterDispatch(Visitor*);
+ void TraceAfterDispatch(Visitor*);
private:
Member<A> m_a;
};
@@ -45,7 +45,7 @@ protected:
class D : public Abstract {
public:
D() : Abstract(TD) { }
- void traceAfterDispatch(Visitor*);
+ void TraceAfterDispatch(Visitor*);
private:
Member<A> m_a;
};
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/test.py ('k') | tools/clang/blink_gc_plugin/tests/trace_after_dispatch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698