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

Unified Diff: src/d8.h

Issue 2137013006: [Tracing] V8 Tracing Controller (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add getter for more attributes of TraceObject Created 4 years, 5 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 36ec43ec6d8baee160a52a3642d4461403cf35d9..0e365a52ddfec24c6f4a5f6daf29681898141f3f 100644
--- a/src/d8.h
+++ b/src/d8.h
@@ -290,7 +290,9 @@ class ShellOptions {
isolate_sources(NULL),
icu_data_file(NULL),
natives_blob(NULL),
- snapshot_blob(NULL) {}
+ snapshot_blob(NULL),
+ trace_enabled(false),
+ trace_config(NULL) {}
~ShellOptions() {
delete[] isolate_sources;
@@ -318,6 +320,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

Powered by Google App Engine
This is Rietveld 408576698