Index: src/d8.h |
diff --git a/src/d8.h b/src/d8.h |
index 36ec43ec6d8baee160a52a3642d4461403cf35d9..7d142e7d1d0bb8340918b792284939cc0085a074 100644 |
--- a/src/d8.h |
+++ b/src/d8.h |
@@ -290,7 +290,8 @@ class ShellOptions { |
isolate_sources(NULL), |
icu_data_file(NULL), |
natives_blob(NULL), |
- snapshot_blob(NULL) {} |
+ snapshot_blob(NULL), |
+ trace_enabled(false) {} |
~ShellOptions() { |
delete[] isolate_sources; |
@@ -318,6 +319,8 @@ class ShellOptions { |
const char* icu_data_file; |
const char* natives_blob; |
const char* snapshot_blob; |
+ bool trace_enabled; |
+ const char* trace_config; |
}; |
#ifdef V8_SHARED |