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

Side by Side Diff: tools/clang/blink_gc_plugin/tests/traceimpl_derived_from_templated_base.h

Issue 2655933002: blink_gc_plugin: retire overloaded traceImpl detection and handling. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_ 5 #ifndef TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_
6 #define TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_ 6 #define TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_
7 7
8 #include "heap/stubs.h" 8 #include "heap/stubs.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class X : public GarbageCollected<X> { 12 class X : public GarbageCollected<X> {
13 public: 13 public:
14 virtual void Trace(Visitor*) {} 14 virtual void Trace(Visitor*) {}
15 }; 15 };
16 16
17 template <int Y> 17 template <int Y>
18 class TraceImplTemplatedBase 18 class TraceImplTemplatedBase
19 : public GarbageCollected<TraceImplTemplatedBase<Y> > { 19 : public GarbageCollected<TraceImplTemplatedBase<Y> > {
20 public: 20 public:
21 void Trace(Visitor* visitor) { TraceImpl(visitor); } 21 void Trace(Visitor* visitor) { visitor->Trace(x_); }
22
23 template <typename VisitorDispatcher>
24 void TraceImpl(VisitorDispatcher visitor) {
25 visitor->Trace(x_);
26 }
27 22
28 private: 23 private:
29 Member<X> x_; 24 Member<X> x_;
30 }; 25 };
31 26
32 class TraceImplDerivedFromTemplatedBase : public TraceImplTemplatedBase<0> { 27 class TraceImplDerivedFromTemplatedBase : public TraceImplTemplatedBase<0> {
33 }; 28 };
34 29
35 } 30 }
36 31
37 #endif // TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_ 32 #endif // TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_
OLDNEW
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/traceimpl_dependent_scope.txt ('k') | tools/clang/blink_gc_plugin/tests/traceimpl_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698