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

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

Issue 2128773003: Rename DISALLOW_ALLOCATION to DISALLOW_NEW (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: tools/clang/blink_gc_plugin/tests/class_requires_trace_method_tmpl.h
diff --git a/tools/clang/blink_gc_plugin/tests/class_requires_trace_method_tmpl.h b/tools/clang/blink_gc_plugin/tests/class_requires_trace_method_tmpl.h
index b24b1ddfdf229a03845ed525eb9247d240d1d4f8..70cab61d97cf74d08a2e9b553865b20aea7a726f 100644
--- a/tools/clang/blink_gc_plugin/tests/class_requires_trace_method_tmpl.h
+++ b/tools/clang/blink_gc_plugin/tests/class_requires_trace_method_tmpl.h
@@ -12,11 +12,11 @@ namespace blink {
class HeapObject : public GarbageCollected<HeapObject> { };
class PartObjectA {
- DISALLOW_ALLOCATION();
+ DISALLOW_NEW();
};
class PartObjectB {
- DISALLOW_ALLOCATION();
+ DISALLOW_NEW();
public:
void trace(Visitor* visitor) { visitor->trace(m_obj); }
private:

Powered by Google App Engine
This is Rietveld 408576698