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

Unified Diff: src/d8.h

Issue 2854173002: Make in process stack dumping optional. (Closed)
Patch Set: Address comments Created 3 years, 8 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
« no previous file with comments | « include/libplatform/libplatform.h ('k') | src/d8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8.h
diff --git a/src/d8.h b/src/d8.h
index 82e854e7f21b3b7b0f4e77599919be6b402ce8f9..252135b5dd160992f900bd35b616db262702eb83 100644
--- a/src/d8.h
+++ b/src/d8.h
@@ -303,7 +303,8 @@ class ShellOptions {
snapshot_blob(NULL),
trace_enabled(false),
trace_config(NULL),
- lcov_file(NULL) {}
+ lcov_file(NULL),
+ disable_in_process_stack_traces(false) {}
~ShellOptions() {
delete[] isolate_sources;
@@ -334,6 +335,7 @@ class ShellOptions {
bool trace_enabled;
const char* trace_config;
const char* lcov_file;
+ bool disable_in_process_stack_traces;
};
class Shell : public i::AllStatic {
« no previous file with comments | « include/libplatform/libplatform.h ('k') | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698