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

Unified Diff: tools/clang/blink_gc_plugin/tests/cycle_super_neg.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/cycle_super_neg.h
diff --git a/tools/clang/blink_gc_plugin/tests/cycle_super_neg.h b/tools/clang/blink_gc_plugin/tests/cycle_super_neg.h
index 6f99eff69fc716baf6ceda0df7da78953101a010..e80cc63d041a5b2f20ad04d818e81112fab7e947 100644
--- a/tools/clang/blink_gc_plugin/tests/cycle_super_neg.h
+++ b/tools/clang/blink_gc_plugin/tests/cycle_super_neg.h
@@ -19,12 +19,12 @@ class C;
class A : public GarbageCollectedFinalized<A> {
public:
- virtual void trace(Visitor*) {}
+ virtual void Trace(Visitor*) {}
};
class B : public A {
public:
- virtual void trace(Visitor*);
+ virtual void Trace(Visitor*);
};
class C : public RefCounted<C> {
@@ -34,7 +34,7 @@ private:
class D : public A {
public:
- virtual void trace(Visitor*);
+ virtual void Trace(Visitor*);
private:
RefPtr<C> m_c;
};
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/cycle_super.cpp ('k') | tools/clang/blink_gc_plugin/tests/cycle_super_neg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698