Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1555)

Unified Diff: Source/heap/Visitor.h

Issue 199273005: Oilpan: Change the name of the finalization method that can be (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/heap/Visitor.h
diff --git a/Source/heap/Visitor.h b/Source/heap/Visitor.h
index 27cce315e8cd2cf9ee2cfb1034f57e0c448fcee9..b320ad34a776e04060d1de899bbde37f73184d38 100644
--- a/Source/heap/Visitor.h
+++ b/Source/heap/Visitor.h
@@ -95,7 +95,7 @@ struct FinalizerTraitImpl;
template<typename T>
struct FinalizerTraitImpl<T, true> {
- static void finalize(void* obj) { static_cast<T*>(obj)->finalize(); };
+ static void finalize(void* obj) { static_cast<T*>(obj)->finalizeGarbageCollectedObject(); };
};
template<typename T>
« no previous file with comments | « Source/heap/HeapTest.cpp ('k') | Source/wtf/Vector.h » ('j') | Source/wtf/Vector.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698