Index: third_party/WebKit/Source/platform/heap/Visitor.h |
diff --git a/third_party/WebKit/Source/platform/heap/Visitor.h b/third_party/WebKit/Source/platform/heap/Visitor.h |
index a32b7c931114d01a576559bd86a6a2c245a4a7e6..9f9cca95a679e966e1163bae74831d593fff6817 100644 |
--- a/third_party/WebKit/Source/platform/heap/Visitor.h |
+++ b/third_party/WebKit/Source/platform/heap/Visitor.h |
@@ -139,7 +139,7 @@ public: |
template<typename T> |
void trace(const Member<T>& t) |
{ |
- mark(t.get()); |
+ mark(t.unsafeGet()); |
} |
// Fallback method used only when we need to trace raw pointers of T. |