Home | History | Annotate | Download | only in memory

Lines Matching refs:RefCounted

71 // knock-off of WebKit's RefCounted<T> class.  To use this guy just extend your
74 // class MyFoo : public base::RefCounted<MyFoo> {
77 // friend class base::RefCounted<MyFoo>;
84 class RefCounted : public subtle::RefCountedBase {
86 RefCounted() { }
87 ~RefCounted() { }
100 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
120 // A thread-safe variant of RefCounted<T>
159 class RefCountedData : public base::RefCounted< base::RefCountedData<T> > {
175 // class MyFoo : public RefCounted<MyFoo> {