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

Unified Diff: tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp

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
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/cycle_ptrs.h ('k') | tools/clang/blink_gc_plugin/tests/cycle_sub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp
diff --git a/tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp b/tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp
index f3b3989228294ad4ee0120c6556f08c8cc6bbf26..631f7c48c9a5c9332c55077eaa721ed3f5d01d92 100644
--- a/tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp
+++ b/tools/clang/blink_gc_plugin/tests/cycle_ptrs.cpp
@@ -6,12 +6,12 @@
namespace blink {
-void A::trace(Visitor* visitor) {
- visitor->trace(m_b);
+void A::Trace(Visitor* visitor) {
+ visitor->Trace(m_b);
}
-void B::trace(Visitor* visitor) {
- visitor->trace(m_a);
+void B::Trace(Visitor* visitor) {
+ visitor->Trace(m_a);
}
}
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/cycle_ptrs.h ('k') | tools/clang/blink_gc_plugin/tests/cycle_sub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698