Index: src/heap/spaces.h |
diff --git a/src/heap/spaces.h b/src/heap/spaces.h |
index 80f89f23ce563469cadf7c0b06f786c373ac2c72..41e0727a3fbe9a634dff2bde325fd996b9951de9 100644 |
--- a/src/heap/spaces.h |
+++ b/src/heap/spaces.h |
@@ -456,7 +456,7 @@ |
inline SlotSet* old_to_new_slots() { return old_to_new_slots_; } |
inline SlotSet* old_to_old_slots() { return old_to_old_slots_; } |
inline TypedSlotSet* typed_old_to_new_slots() { |
- return typed_old_to_new_slots_.Value(); |
+ return typed_old_to_new_slots_; |
} |
inline TypedSlotSet* typed_old_to_old_slots() { |
return typed_old_to_old_slots_; |
@@ -656,7 +656,7 @@ |
// is ceil(size() / kPageSize). |
SlotSet* old_to_new_slots_; |
SlotSet* old_to_old_slots_; |
- base::AtomicValue<TypedSlotSet*> typed_old_to_new_slots_; |
+ TypedSlotSet* typed_old_to_new_slots_; |
TypedSlotSet* typed_old_to_old_slots_; |
SkipList* skip_list_; |