diff options
Diffstat (limited to 'chromium/v8/src/heap/remembered-set.h')
-rw-r--r-- | chromium/v8/src/heap/remembered-set.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/v8/src/heap/remembered-set.h b/chromium/v8/src/heap/remembered-set.h index cd2344b3499..ea7fe0149ba 100644 --- a/chromium/v8/src/heap/remembered-set.h +++ b/chromium/v8/src/heap/remembered-set.h @@ -5,8 +5,8 @@ #ifndef V8_HEAP_REMEMBERED_SET_H_ #define V8_HEAP_REMEMBERED_SET_H_ +#include "src/base/memory.h" #include "src/codegen/reloc-info.h" -#include "src/common/v8memory.h" #include "src/heap/heap.h" #include "src/heap/slot-set.h" #include "src/heap/spaces.h" @@ -309,7 +309,7 @@ class UpdateTypedSlotHelper { SlotCallbackResult result = callback(FullMaybeObjectSlot(&code)); DCHECK(!HasWeakHeapObjectTag(code)); if (code != old_code) { - Memory<Address>(entry_address) = code.entry(); + base::Memory<Address>(entry_address) = code.entry(); } return result; } |