| Index: third_party/WebKit/Source/platform/heap/Member.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Member.h b/third_party/WebKit/Source/platform/heap/Member.h
|
| index ba2eb03515a79afffaa3b7c64357e6f5b13c3694..cb9dbd53e2bdfe3f9aadc20d78d6477d4a2a75a9 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Member.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Member.h
|
| @@ -252,10 +252,11 @@ class Member : public MemberBase<T, TracenessMemberConfiguration::Traced> {
|
|
|
| // WeakMember is similar to Member in that it is used to point to other oilpan
|
| // heap allocated objects.
|
| -// However instead of creating a strong pointer to the object, the WeakMember creates
|
| -// a weak pointer, which does not keep the pointee alive. Hence if all pointers to
|
| -// to a heap allocated object are weak the object will be garbage collected. At the
|
| -// time of GC the weak pointers will automatically be set to null.
|
| +// However instead of creating a strong pointer to the object, the WeakMember
|
| +// creates a weak pointer, which does not keep the pointee alive. Hence if all
|
| +// pointers to to a heap allocated object are weak the object will be garbage
|
| +// collected. At the time of GC the weak pointers will automatically be set to
|
| +// null.
|
| template <typename T>
|
| class WeakMember : public MemberBase<T, TracenessMemberConfiguration::Traced> {
|
| typedef MemberBase<T, TracenessMemberConfiguration::Traced> Parent;
|
|
|