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

Unified Diff: public/web/WebFrame.h

Issue 1166623002: Oilpan: Remove a visitor parameter from isHeapObjectAlive (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/wtf/Vector.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebFrame.h
diff --git a/public/web/WebFrame.h b/public/web/WebFrame.h
index 15cae6854c0f565023b230dc6f451979d413c0e1..16e0ba8db388c13f357931feaabf72501185006e 100644
--- a/public/web/WebFrame.h
+++ b/public/web/WebFrame.h
@@ -710,8 +710,7 @@ private:
#if ENABLE(OILPAN)
static void traceFrame(Visitor*, WebFrame*);
static void traceFrame(InlinedGlobalMarkingVisitor, WebFrame*);
- static bool isFrameAlive(Visitor*, const WebFrame*);
- static bool isFrameAlive(InlinedGlobalMarkingVisitor, const WebFrame*);
+ static bool isFrameAlive(const WebFrame*);
template <typename VisitorDispatcher>
static void traceFramesImpl(VisitorDispatcher, WebFrame*);
@@ -719,8 +718,6 @@ private:
void clearWeakFramesImpl(VisitorDispatcher);
template <typename VisitorDispatcher>
static void traceFrameImpl(VisitorDispatcher, WebFrame*);
- template <typename VisitorDispatcher>
- static bool isFrameAliveImpl(VisitorDispatcher, const WebFrame*);
#endif
#endif
« no previous file with comments | « Source/wtf/Vector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698