Chromium Code Reviews| Index: base/lazy_instance.h |
| =================================================================== |
| --- base/lazy_instance.h (revision 1837) |
| +++ base/lazy_instance.h (working copy) |
| @@ -72,6 +72,9 @@ |
| void EnsureInstance(void* instance, void (*ctor)(void*), void (*dtor)(void*)); |
| base::subtle::Atomic32 state_; |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(LazyInstanceHelper); |
| }; |
| template <typename Type, typename Traits = DefaultLazyInstanceTraits<Type> > |