Chromium Code Reviews| Index: src/objects-visiting.h |
| diff --git a/src/objects-visiting.h b/src/objects-visiting.h |
| index 26d1b121d2d7dd2440cef67ac0572a0c66eb8e49..3cae539b19de767a9b1b268a1e8f071aa4e22fb7 100644 |
| --- a/src/objects-visiting.h |
| +++ b/src/objects-visiting.h |
| @@ -395,9 +395,6 @@ class StaticMarkingVisitor : public StaticVisitorBase { |
| static inline void VisitRuntimeEntry(RelocInfo* rinfo) { } |
| // TODO(mstarzinger): This should be made protected once refactoring is done. |
| - static inline void VisitNativeContext(Map* map, HeapObject* object); |
| - |
| - // TODO(mstarzinger): This should be made protected once refactoring is done. |
| // Mark non-optimize code for functions inlined into the given optimized |
| // code. This will prevent it from being flushed. |
| static void MarkInlinedFunctionsCode(Heap* heap, Code* code); |
| @@ -408,6 +405,9 @@ class StaticMarkingVisitor : public StaticVisitorBase { |
| static inline void VisitSharedFunctionInfo(Map* map, HeapObject* object); |
| static inline void VisitJSFunction(Map* map, HeapObject* object); |
| static inline void VisitJSRegExp(Map* map, HeapObject* object); |
| + static inline void VisitNativeContext(Map* map, HeapObject* object); |
| + static inline void VisitNativeContextIncremental(Map* map, |
|
Michael Starzinger
2012/11/08 11:10:39
Remove the declaration of the VisitNativeContextIn
payer
2012/11/08 12:12:10
Done.
|
| + HeapObject* object); |
| // Mark pointers in a Map and its TransitionArray together, possibly |
| // treating transitions or back pointers weak. |