| Index: src/snapshot/natives.h
|
| diff --git a/src/snapshot/natives.h b/src/snapshot/natives.h
|
| index 149f9ec2bed27de84b39e8093701138b941ad1e9..8fda01c40479a712cc17b7deb9cae168a1d7914a 100644
|
| --- a/src/snapshot/natives.h
|
| +++ b/src/snapshot/natives.h
|
| @@ -12,7 +12,9 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| -enum NativeType { CORE, EXPERIMENTAL, EXTRAS, D8, TEST };
|
| +enum NativeType {
|
| + CORE, EXPERIMENTAL, D8, TEST
|
| +};
|
|
|
| template <NativeType type>
|
| class NativesCollection {
|
| @@ -34,7 +36,6 @@
|
|
|
| typedef NativesCollection<CORE> Natives;
|
| typedef NativesCollection<EXPERIMENTAL> ExperimentalNatives;
|
| -typedef NativesCollection<EXTRAS> ExtraNatives;
|
|
|
| #ifdef V8_USE_EXTERNAL_STARTUP_DATA
|
| // Used for reading the natives at runtime. Implementation in natives-empty.cc
|
|
|