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

Unified Diff: src/api.cc

Issue 606013002: Install function tables for the code range on Win64 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@bleeding_edge
Patch Set: updates Created 6 years, 3 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/api.cc
diff --git a/src/api.cc b/src/api.cc
index bda34bdfacacbb369f5e8db2b18d03c6f38b1ec7..726212ba20f840a2988b1039d32c3f8e514c12ec 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -6582,6 +6582,9 @@ Isolate* Isolate::New(const Isolate::CreateParams& params) {
if (params.enable_serializer) {
isolate->enable_serializer();
}
+#if _WIN64
+ isolate->set_exception_filter(params.exception_filter);
+#endif
// TODO(jochen): Once we got rid of Isolate::Current(), we can remove this.
Isolate::Scope isolate_scope(v8_isolate);
if (params.entry_hook || !i::Snapshot::Initialize(isolate)) {

Powered by Google App Engine
This is Rietveld 408576698