| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 82b2320c6b1b35aeb0a43f7ae5819f7c8fb51087..75f8068ff9a9934e6a1b98fa9cc83ef0db5e7a75 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -45,10 +45,6 @@
|
| #include "extensions/statistics-extension.h"
|
| #include "code-stubs.h"
|
|
|
| -#if defined(V8_I18N_SUPPORT)
|
| -#include "extensions/i18n/i18n-extension.h"
|
| -#endif
|
| -
|
| namespace v8 {
|
| namespace internal {
|
|
|
| @@ -106,9 +102,6 @@ void Bootstrapper::InitializeOncePerProcess() {
|
| GCExtension::Register();
|
| ExternalizeStringExtension::Register();
|
| StatisticsExtension::Register();
|
| -#if defined(V8_I18N_SUPPORT)
|
| - v8_i18n::Extension::Register();
|
| -#endif
|
| }
|
|
|
|
|
| @@ -2307,12 +2300,6 @@ bool Genesis::InstallExtensions(Handle<Context> native_context,
|
| InstallExtension(isolate, "v8/statistics", &extension_states);
|
| }
|
|
|
| -#if defined(V8_I18N_SUPPORT)
|
| - if (FLAG_enable_i18n) {
|
| - InstallExtension(isolate, "v8/i18n", &extension_states);
|
| - }
|
| -#endif
|
| -
|
| if (extensions == NULL) return true;
|
| // Install required extensions
|
| int count = v8::ImplementationUtilities::GetNameCount(extensions);
|
|
|