| Index: third_party/WebKit/Source/platform/heap/Heap.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
|
| index 0d268b05dcbec35ac8c3fee801d8f5733f39bdd4..08e55b4acd98c867547e12adce64833977bad09c 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Heap.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Heap.h
|
| @@ -211,9 +211,9 @@ public:
|
| return isHeapObjectAlive(member.get());
|
| }
|
| template<typename T>
|
| - static inline bool isHeapObjectAlive(const RawPtr<T>& ptr)
|
| + static inline bool isHeapObjectAlive(const T*& ptr)
|
| {
|
| - return isHeapObjectAlive(ptr.get());
|
| + return isHeapObjectAlive(ptr);
|
| }
|
|
|
| // Is the finalizable GC object still alive, but slated for lazy sweeping?
|
|
|