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

Unified Diff: content/shell/common/v8_breakpad_support_win.cc

Issue 619543002: Hook up custom Win 64 SEH to v8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 6 years, 2 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 | « content/shell/common/v8_breakpad_support_win.h ('k') | gin/debug_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/common/v8_breakpad_support_win.cc
diff --git a/content/shell/common/v8_breakpad_support_win.cc b/content/shell/common/v8_breakpad_support_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..584b3ad1868dfeddfe8a5bc03ec80ec18f7c5c10
--- /dev/null
+++ b/content/shell/common/v8_breakpad_support_win.cc
@@ -0,0 +1,32 @@
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/shell/common/v8_breakpad_support_win.h"
+
+#include <windows.h>
+
+#include "base/logging.h"
+#include "gin/public/debug.h"
+
+namespace v8_breakpad_support {
+
+void SetUp() {
+#ifdef _WIN64
+ // Get the breakpad pointer from content_shell.exe
+ gin::Debug::CodeRangeCreatedCallback create_callback =
+ reinterpret_cast<gin::Debug::CodeRangeCreatedCallback>(
+ ::GetProcAddress(::GetModuleHandle(L"content_shell.exe"),
+ "RegisterNonABICompliantCodeRange"));
+ gin::Debug::CodeRangeDeletedCallback delete_callback =
+ reinterpret_cast<gin::Debug::CodeRangeDeletedCallback>(
+ ::GetProcAddress(::GetModuleHandle(L"content_shell.exe"),
+ "UnregisterNonABICompliantCodeRange"));
+ if (create_callback && delete_callback) {
+ gin::Debug::SetCodeRangeCreatedCallback(create_callback);
+ gin::Debug::SetCodeRangeDeletedCallback(delete_callback);
+ }
+#endif
+}
+
+} // namespace v8_breakpad_support
« no previous file with comments | « content/shell/common/v8_breakpad_support_win.h ('k') | gin/debug_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698