Index: src/snapshot/natives-external.cc |
diff --git a/src/snapshot/natives-external.cc b/src/snapshot/natives-external.cc |
index e02a24c1d37ccdb41eb41a6ddda7b76be8732935..14def474094d45b8fb38ad64d2e231d9a0759280 100644 |
--- a/src/snapshot/natives-external.cc |
+++ b/src/snapshot/natives-external.cc |
@@ -159,7 +159,6 @@ |
NativesHolder<CORE>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
NativesHolder<EXPERIMENTAL>::set( |
NativesStore::MakeFromScriptsSource(&bytes)); |
- NativesHolder<EXTRAS>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
DCHECK(!bytes.HasMore()); |
} |
} |
@@ -186,7 +185,6 @@ |
void DisposeNatives() { |
NativesHolder<CORE>::Dispose(); |
NativesHolder<EXPERIMENTAL>::Dispose(); |
- NativesHolder<EXTRAS>::Dispose(); |
} |
@@ -231,7 +229,6 @@ |
// my choice to elide them. This we'll explicitly instantiate these. |
template class NativesCollection<CORE>; |
template class NativesCollection<EXPERIMENTAL>; |
-template class NativesCollection<EXTRAS>; |
} // namespace v8::internal |
} // namespace v8 |