aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrapper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrapper.cc')
-rw-r--r--src/bootstrapper.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
index 0e49966b..f60a975d 100644
--- a/src/bootstrapper.cc
+++ b/src/bootstrapper.cc
@@ -39,6 +39,8 @@
#include "objects-visiting.h"
#include "snapshot.h"
#include "stub-cache.h"
+#include "extensions/externalize-string-extension.h"
+#include "extensions/gc-extension.h"
namespace v8 {
namespace internal {
@@ -137,6 +139,8 @@ Handle<String> Bootstrapper::NativesSourceLookup(int index) {
void Bootstrapper::Initialize(bool create_heap_objects) {
extensions_cache.Initialize(create_heap_objects);
+ GCExtension::Register();
+ ExternalizeStringExtension::Register();
}