| Index: base/memory/linked_ptr.h
|
| diff --git a/base/linked_ptr.h b/base/memory/linked_ptr.h
|
| similarity index 98%
|
| rename from base/linked_ptr.h
|
| rename to base/memory/linked_ptr.h
|
| index 162798d13d49666fbd0125e879b4ba0e9d514119..d08f8aa9cd747da169cc3c6988cc53ce88a0fc65 100644
|
| --- a/base/linked_ptr.h
|
| +++ b/base/memory/linked_ptr.h
|
| @@ -34,8 +34,8 @@
|
| // - is thread safe for copying and deletion
|
| // - supports weak_ptrs
|
|
|
| -#ifndef BASE_LINKED_PTR_H_
|
| -#define BASE_LINKED_PTR_H_
|
| +#ifndef BASE_MEMORY_LINKED_PTR_H_
|
| +#define BASE_MEMORY_LINKED_PTR_H_
|
| #pragma once
|
|
|
| #include "base/logging.h" // for CHECK macros
|
| @@ -179,4 +179,4 @@ linked_ptr<T> make_linked_ptr(T* ptr) {
|
| return linked_ptr<T>(ptr);
|
| }
|
|
|
| -#endif // BASE_LINKED_PTR_H_
|
| +#endif // BASE_MEMORY_LINKED_PTR_H_
|
|
|