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

Unified Diff: tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.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/destructor_access_finalized_field.h
diff --git a/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h b/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
index 4c721568aa6a0f34d7f3ca6c12d9cd9a5bbbc50a..074582fc6f5beacb35d963889d3df307287d8061 100644
--- a/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
+++ b/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
@@ -19,7 +19,7 @@ class HeapObject;
class PartOther {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
- void trace(Visitor*);
+ void Trace(Visitor*);
HeapObject* obj() { return m_obj; }
@@ -30,7 +30,7 @@ private:
class HeapObject : public GarbageCollectedFinalized<HeapObject> {
public:
~HeapObject();
- void trace(Visitor*);
+ void Trace(Visitor*);
bool foo() { return true; }
void bar(HeapObject*) { }
private:

Powered by Google App Engine
This is Rietveld 408576698