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

Unified Diff: Source/platform/heap/MarkingVisitor.h

Issue 1149943003: Oilpan: Rename weak callback related methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | Source/platform/heap/MarkingVisitorImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/MarkingVisitor.h
diff --git a/Source/platform/heap/MarkingVisitor.h b/Source/platform/heap/MarkingVisitor.h
index a95a4bb9f55075b98c32e68764b6df288fedd641..c93d51f0f5bcb447fc702244fc99a4193ca13eb4 100644
--- a/Source/platform/heap/MarkingVisitor.h
+++ b/Source/platform/heap/MarkingVisitor.h
@@ -41,7 +41,7 @@ public:
Impl::registerDelayedMarkNoTracing(object);
}
- virtual void registerWeakMembers(const void* closure, const void* objectPointer, WeakPointerCallback callback) override
+ virtual void registerWeakMembers(const void* closure, const void* objectPointer, WeakCallback callback) override
{
Impl::registerWeakMembers(closure, objectPointer, callback);
}
@@ -178,7 +178,7 @@ public:
#endif
protected:
- virtual void registerWeakCellWithCallback(void** cell, WeakPointerCallback callback) override
+ virtual void registerWeakCellWithCallback(void** cell, WeakCallback callback) override
{
Impl::registerWeakCellWithCallback(cell, callback);
}
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | Source/platform/heap/MarkingVisitorImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698