Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Unified Diff: src/d8.h

Issue 293993021: Support external startup data in V8. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/d8.h
diff --git a/src/d8.h b/src/d8.h
index 014bda05c62f23f42e0055821009dde1b6b53036..c4b2592b3befca6f1aa2f06fa097e7a76e292216 100644
--- a/src/d8.h
+++ b/src/d8.h
@@ -207,7 +207,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;
@@ -226,6 +228,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

Powered by Google App Engine
This is Rietveld 408576698