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..6dcd4a2f89aa3526fc003a937a4bfc4ca5b6e58e |
--- /dev/null |
+++ b/content/shell/common/v8_breakpad_support_win.cc |
@@ -0,0 +1,24 @@ |
+// 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 "gin/public/debug.h" |
+ |
+namespace v8_breakpad_support { |
+ |
+void SetUp() { |
+#ifdef _WIN64 |
+ // Get the breakpad pointer from chrome.exe |
+ gin::Debug::CodeRangeCreatedCallback callback = |
+ reinterpret_cast<gin::Debug::CodeRangeCreatedCallback>( |
+ ::GetProcAddress(::GetModuleHandle(L"content_shell.exe"), |
+ "RegisterNonABICompliantCodeRange")); |
+ gin::Debug::SetCodeRangeCreatedCallback(callback); |
+#endif |
+} |
+ |
+} // namespace v8_breakpad_support |