Index: src/heap.h |
diff --git a/src/heap.h b/src/heap.h |
index fbe0531014e6c7a7adae10c6ffd03bfde43ff826..203ced5cbab8273a6f27c4f2eebe47d7269902a0 100644 |
--- a/src/heap.h |
+++ b/src/heap.h |
@@ -188,9 +188,7 @@ namespace internal { |
V(Symbol, frozen_symbol, FrozenSymbol) \ |
V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
EmptySlowElementDictionary) \ |
- V(Symbol, observed_symbol, ObservedSymbol) \ |
- V(HeapObject, i18n_template_one, I18nTemplateOne) \ |
- V(HeapObject, i18n_template_two, I18nTemplateTwo) |
+ V(Symbol, observed_symbol, ObservedSymbol) |
#define ROOT_LIST(V) \ |
STRONG_ROOT_LIST(V) \ |
@@ -1300,12 +1298,6 @@ class Heap { |
ASSERT((callback == NULL) ^ (global_gc_epilogue_callback_ == NULL)); |
global_gc_epilogue_callback_ = callback; |
} |
- void SetI18nTemplateOne(ObjectTemplateInfo* tmpl) { |
- set_i18n_template_one(tmpl); |
- } |
- void SetI18nTemplateTwo(ObjectTemplateInfo* tmpl) { |
- set_i18n_template_two(tmpl); |
- } |
// Heap root getters. We have versions with and without type::cast() here. |
// You can't use type::cast during GC because the assert fails. |