Index: src/d8.h |
diff --git a/src/d8.h b/src/d8.h |
index bd70c8e7824d39effcf5ce150a0a33dccd819818..4244a5f6485e05b52d6c9e25ff1a341b2c288088 100644 |
--- a/src/d8.h |
+++ b/src/d8.h |
@@ -208,7 +208,9 @@ class ShellOptions { |
mock_arraybuffer_allocator(false), |
num_isolates(1), |
isolate_sources(NULL), |
- icu_data_file(NULL) { } |
+ icu_data_file(NULL), |
+ natives_blob(NULL), |
+ snapshot_blob(NULL) { } |
~ShellOptions() { |
delete[] isolate_sources; |
@@ -232,6 +234,8 @@ class ShellOptions { |
int num_isolates; |
SourceGroup* isolate_sources; |
const char* icu_data_file; |
+ const char* natives_blob; |
+ const char* snapshot_blob; |
}; |
#ifdef V8_SHARED |