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

Unified Diff: tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.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
« no previous file with comments | « no previous file | tools/clang/blink_gc_plugin/tests/class_requires_trace_method.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/base_class_must_define_virtual_trace.h
diff --git a/tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.h b/tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.h
index 16558bb85084fb6884ae8413ddceae543b52d4a5..fbd26d73677603955606ff7bffc9502d7f9b4116 100644
--- a/tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.h
+++ b/tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.h
@@ -10,12 +10,12 @@
namespace blink {
class PartBase {
- DISALLOW_ALLOCATION();
+ DISALLOW_NEW();
// Missing virtual trace.
};
class PartDerived : public PartBase {
- DISALLOW_ALLOCATION();
+ DISALLOW_NEW();
public:
virtual void trace(Visitor*);
};
« no previous file with comments | « no previous file | tools/clang/blink_gc_plugin/tests/class_requires_trace_method.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698