| OLD | NEW |
| 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) { TraceImpl(visitor); } |
| 22 | 22 |
| 23 template <typename VisitorDispatcher> | 23 template <typename VisitorDispatcher> |
| 24 void traceImpl(VisitorDispatcher visitor) { | 24 void TraceImpl(VisitorDispatcher visitor) { |
| 25 visitor->trace(x_); | 25 visitor->Trace(x_); |
| 26 } | 26 } |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 Member<X> x_; | 29 Member<X> x_; |
| 30 }; | 30 }; |
| 31 | 31 |
| 32 class TraceImplDerivedFromTemplatedBase : public TraceImplTemplatedBase<0> { | 32 class TraceImplDerivedFromTemplatedBase : public TraceImplTemplatedBase<0> { |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 } | 35 } |
| 36 | 36 |
| 37 #endif // TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_ | 37 #endif // TRACEIMPL_DERIVED_FROM_TEMPLATED_BASE_H_ |
| OLD | NEW |